Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
11 | /** |
||
12 | * @SuppressWarnings(PHPMD.NumberOfChildren) |
||
13 | */ |
||
14 | class AbstractEntityFactory |
||
15 | { |
||
16 | /** |
||
17 | * @var DSM\Factory\EntityFactory |
||
18 | */ |
||
19 | protected $entityFactory; |
||
20 | |||
21 | public function __construct(DSM\Factory\EntityFactory $entityFactory, EntityManagerInterface $entityManager) |
||
22 | { |
||
27 |