wp-mail-smtp
/
vendor
/
woocommerce
/
action-scheduler
/
classes
/
migration
/
DryRun_LogMigrator.php
ActionMigrator.php
2 years ago
ActionScheduler_DBStoreMigrator.php
2 years ago
BatchFetcher.php
2 years ago
Config.php
2 years ago
Controller.php
2 years ago
DryRun_ActionMigrator.php
2 years ago
DryRun_LogMigrator.php
2 years ago
LogMigrator.php
2 years ago
Runner.php
2 years ago
Scheduler.php
2 years ago
DryRun_LogMigrator.php
23 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 | } |