1 | <?php |
||
14 | final class InitializedObjectConstructor implements ObjectConstructorInterface |
||
15 | { |
||
16 | private $fallbackConstructor; |
||
17 | |||
18 | /** |
||
19 | * Constructor. |
||
20 | * |
||
21 | * @param ObjectConstructorInterface $fallbackConstructor Fallback object constructor |
||
22 | */ |
||
23 | 13 | public function __construct(ObjectConstructorInterface $fallbackConstructor) |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 2 | public function construct(VisitorInterface $visitor, |
|
43 | } |
||
44 |