Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| Push | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace NewfoldLabs\WP\Module\Migration\Steps; |
| 4 | |
| 5 | use NewfoldLabs\WP\Module\Migration\Steps\AbstractStep; |
| 6 | |
| 7 | /** |
| 8 | * Monitors InstaWp instawp_migration_details option update to intercept the migration push step. |
| 9 | * |
| 10 | * @package wp-module-migration |
| 11 | */ |
| 12 | class Push extends AbstractStep { |
| 13 | /** |
| 14 | * Construct. Init basic parameters. |
| 15 | */ |
| 16 | public function __construct() { |
| 17 | $this->set_step_slug( 'Push' ); |
| 18 | $this->set_status( $this->statuses['running'] ); |
| 19 | } |
| 20 | } |