| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function createTestDb(): void |
||
| 15 | { |
||
| 16 | $shlinkDbPath = realpath(sys_get_temp_dir()) . '/shlink-tests.db'; |
||
| 17 | if (file_exists($shlinkDbPath)) { |
||
| 18 | unlink($shlinkDbPath); |
||
| 19 | } |
||
| 20 | |||
| 21 | $process = new Process(['vendor/bin/doctrine', 'orm:schema-tool:create', '--no-interaction', '-q']); |
||
| 22 | $process->inheritEnvironmentVariables() |
||
| 23 | ->mustRun(); |
||
| 24 | } |
||
| 26 |