| Total Complexity | 1 |
| Total Lines | 7 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class TestsFinishedSubscriber implements FinishedSubscriber { |
||
| 23 | public function notify(Finished $event): void { |
||
| 24 | echo "Avaktiverar och återställer testdatabas." . PHP_EOL; |
||
| 25 | |||
| 26 | $dir = __DIR__ . '/../../src/_data'; |
||
| 27 | rename("$dir/test", "$dir/_test"); |
||
| 28 | copy("$dir/_test/db/original/tips.db", "$dir/_test/db/tips.db"); |
||
| 29 | } |
||
| 31 |