1 | <?php |
||
9 | abstract class AbstractInitializeCommand extends Command |
||
10 | { |
||
11 | /** |
||
12 | * Execute the console command. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | 126 | public function handle(Container $container) |
|
29 | |||
30 | /** |
||
31 | * Returns initializer instance for current command. |
||
32 | * |
||
33 | * @return object |
||
34 | */ |
||
35 | abstract protected function getInitializerInstance(Container $container); |
||
36 | } |
||
37 |