| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class Transaction extends BaseTransaction |
||
| 11 | { |
||
| 12 | private EntityManagerInterface $entityManager; |
||
| 13 | |||
| 14 | public function __construct(EntityManagerInterface $entityManager) |
||
| 15 | { |
||
| 16 | $this->entityManager = $entityManager; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getEntityManager(): EntityManagerInterface |
||
| 22 | } |
||
| 23 | } |
||
| 24 |