ActionMigrator.php
1 year ago
ActionScheduler_DBStoreMigrator.php
1 year ago
BatchFetcher.php
1 year ago
Config.php
1 year ago
Controller.php
1 year ago
DryRun_ActionMigrator.php
1 year ago
DryRun_LogMigrator.php
1 year ago
LogMigrator.php
1 year ago
Runner.php
1 year ago
Scheduler.php
1 year ago
DryRun_LogMigrator.php
24 lines
| 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 | } |
| 24 |