| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
namespace Action_Scheduler\Migration; |
| 5 |
|
| 6 |
/** |
| 7 |
* Class DryRun_LogMigrator |
| 8 |
* |
| 9 |
* @package Action_Scheduler\Migration |
| 10 |
* |
| 11 |
* @codeCoverageIgnore |
| 12 |
*/ |
| 13 |
class DryRun_LogMigrator extends LogMigrator { |
| 14 |
/** |
| 15 |
* Simulate migrating an action log. |
| 16 |
* |
| 17 |
* @param int $source_action_id Source logger object. |
| 18 |
* @param int $destination_action_id Destination logger object. |
| 19 |
*/ |
| 20 |
public function migrate( $source_action_id, $destination_action_id ) { |
| 21 |
// no-op |
| 22 |
} |
| 23 |
} |