base-migration-profiler.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Migrations\Profilers; |
| 5 | |
| 6 | use Jet_Form_Builder\Migrations\Versions\Base_Migration; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Base_Migration_Profiler { |
| 14 | |
| 15 | public function on_up_end( Base_Migration $migration, string $timer_stop ) { |
| 16 | } |
| 17 | |
| 18 | public function on_down_end( Base_Migration $migration, string $timer_stop ) { |
| 19 | } |
| 20 | |
| 21 | } |
| 22 |