1 | <?php |
||
13 | class SymfonyDependencyInjectionFactory extends AbstractFactory |
||
14 | { |
||
15 | /** |
||
16 | * @var ContainerInterface |
||
17 | */ |
||
18 | protected $container; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $key; |
||
24 | |||
25 | /** |
||
26 | * @param ContainerInterface $container |
||
27 | * @param string $key |
||
28 | */ |
||
29 | 10 | public function __construct(ContainerInterface $container, $key) |
|
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | 5 | protected function createStateMachine() |
|
51 | } |
||
52 |