base-migration-profiler.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Migrations\Profilers; |
| 5 | |
| 6 | |
| 7 | use Jet_Form_Builder\Migrations\Versions\Base_Migration; |
| 8 | |
| 9 | class Base_Migration_Profiler { |
| 10 | |
| 11 | public function on_up_end( Base_Migration $migration, string $timer_stop ) { |
| 12 | } |
| 13 | |
| 14 | public function on_down_end( Base_Migration $migration, string $timer_stop ) { |
| 15 | } |
| 16 | |
| 17 | } |