PATH:
home
/
lab2454c
/
igpma.com
/
wp-content
/
plugins
/
woocommerce
/
packages
/
action-scheduler
/
classes
/
migration
<?php namespace Action_Scheduler\Migration; /** * Class DryRun_ActionMigrator * * @package Action_Scheduler\Migration * * @since 3.0.0 * * @codeCoverageIgnore */ class DryRun_ActionMigrator extends ActionMigrator { /** * Simulate migrating an action. * * @param int $source_action_id Action ID. * * @return int */ public function migrate( $source_action_id ) { do_action( 'action_scheduler/migrate_action_dry_run', $source_action_id ); return 0; } }
[+]
..
[-] Config.php
[edit]
[-] DryRun_ActionMigrator.php
[edit]
[-] Runner.php
[edit]
[-] ActionScheduler_DBStoreMigrator.php
[edit]
[-] DryRun_LogMigrator.php
[edit]
[-] Controller.php
[edit]
[-] Scheduler.php
[edit]
[-] ActionMigrator.php
[edit]
[-] LogMigrator.php
[edit]
[-] BatchFetcher.php
[edit]