Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class TestHelper |
||
14 | { |
||
15 | public function createTestDb(): void |
||
16 | { |
||
17 | $process = new Process(['vendor/bin/doctrine', 'orm:schema-tool:drop', '--force', '--no-interaction', '-q']); |
||
18 | $process->mustRun(); |
||
19 | |||
20 | $process = new Process(['vendor/bin/doctrine', 'orm:schema-tool:create', '--no-interaction', '-q']); |
||
21 | $process->mustRun(); |
||
22 | } |
||
23 | |||
24 | public function seedFixtures(EntityManagerInterface $em, array $config): void |
||
38 | } |
||
39 | } |
||
40 |