Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
14 | public function createTestDb(): void |
||
15 | { |
||
16 | $process = new Process(['vendor/bin/doctrine', 'orm:schema-tool:drop', '--force', '--no-interaction', '-q']); |
||
17 | $process->inheritEnvironmentVariables() |
||
18 | ->mustRun(); |
||
19 | |||
20 | $process = new Process(['vendor/bin/doctrine', 'orm:schema-tool:create', '--no-interaction', '-q']); |
||
21 | $process->inheritEnvironmentVariables() |
||
22 | ->mustRun(); |
||
23 | } |
||
41 |