| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | abstract class DatabaseTestCase extends TestCase |
||
| 10 | { |
||
| 11 | protected const ENTITIES_TO_EMPTY = []; |
||
| 12 | |||
| 13 | /** @var EntityManagerInterface */ |
||
| 14 | public static $em; |
||
| 15 | |||
| 16 | protected function getEntityManager(): EntityManagerInterface |
||
| 17 | { |
||
| 18 | return static::$em; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function tearDown() |
||
| 30 | } |
||
| 31 | } |
||
| 32 |