| Total Complexity | 6 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | final class MissingDelegateInformation implements ReportInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var EntityManagerInterface |
||
| 12 | */ |
||
| 13 | private $em; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * DelegateInformation constructor. |
||
| 17 | * @param EntityManagerInterface $em |
||
| 18 | */ |
||
| 19 | public function __construct(EntityManagerInterface $em) |
||
| 20 | { |
||
| 21 | $this->em = $em; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function produceReport(): array |
||
| 48 | } |
||
| 49 | } |