1 | <?php |
||
9 | final class DoctrineReflectionFactory implements ObjectFactoryInterface |
||
10 | { |
||
11 | /** @var ObjectFactoryInterface */ |
||
12 | private $factory; |
||
13 | |||
14 | /** |
||
15 | * DoctrineReflectionFactory constructor. |
||
16 | * |
||
17 | * @param Registry $registry |
||
18 | * @param string $class |
||
19 | * @param array $args |
||
20 | */ |
||
21 | public function __construct(Registry $registry, $class, array $args) |
||
28 | |||
29 | /** {@inheritdoc} */ |
||
30 | public function createObject($data) |
||
34 | } |
||
35 |