Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | protected function setUp(): void |
||
19 | { |
||
20 | |||
21 | $kernel = self::bootKernel(); |
||
22 | $this->application = new Application($kernel); |
||
23 | $this->application->setAutoExit(false); |
||
24 | $this->application->run(new ArrayInput(array( |
||
25 | 'doctrine:schema:drop', |
||
26 | '--force' => true |
||
27 | ))); |
||
28 | $this->application->run(new ArrayInput(array( |
||
29 | 'doctrine:schema:create' |
||
30 | ))); |
||
33 |