Total Complexity | 3 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | class ObjectManagerAwareConstructor implements ObjectConstructorInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var ObjectManager |
||
21 | */ |
||
22 | private $objectManager; |
||
23 | |||
24 | /** |
||
25 | * @var ObjectConstructorInterface |
||
26 | */ |
||
27 | private $objectConstructor; |
||
28 | |||
29 | public function __construct( |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function construct( |
||
61 |