Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | private function getCommands(): array |
||
35 | { |
||
36 | return [ |
||
37 | [ |
||
38 | 'command' => 'doctrine:database:create', |
||
39 | 'arguments' => [ |
||
40 | '--if-not-exists' => true, |
||
41 | ], |
||
42 | ], |
||
43 | [ |
||
44 | 'command' => 'doctrine:migrations:migrate', |
||
45 | 'arguments' => [], |
||
46 | ], |
||
47 | [ |
||
48 | 'command' => 'doctrine:fixtures:load', |
||
49 | 'arguments' => [], |
||
50 | ], |
||
51 | ]; |
||
52 | } |
||
53 | } |
||
54 |