Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| LastStep | |
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 | /** |
| 6 | * Monitors InstaWp instawp_last_migration_details option update to intercept when migration is finished. |
| 7 | * |
| 8 | * @package wp-module-migration |
| 9 | */ |
| 10 | class LastStep extends AbstractStep { |
| 11 | /** |
| 12 | * Construct. Init basic parameters. |
| 13 | */ |
| 14 | public function __construct() { |
| 15 | $this->set_step_slug( 'LastStep' ); |
| 16 | $this->set_status( $this->statuses['running'] ); |
| 17 | } |
| 18 | } |