| 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) |
||
| 23 | |||
| 24 | public function produceReport(): array |
||
| 49 | } |