| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | trait TestWithTransaction |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Get EntityManager. |
||
| 16 | */ |
||
| 17 | public function getEntityManager(): EntityManager |
||
| 18 | { |
||
| 19 | return _em(); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Start transaction. |
||
| 24 | */ |
||
| 25 | protected function setUp(): void |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Cancel transaction, to undo all changes made. |
||
| 33 | */ |
||
| 34 | protected function tearDown(): void |
||
| 41 |