1 | <?php |
||
25 | class AliasContainerConfigurator extends AbstractContainerConfigurator |
||
26 | { |
||
27 | /** |
||
28 | * @var AliasContainerInterface |
||
29 | */ |
||
30 | private $container; |
||
31 | |||
32 | /** |
||
33 | * @param AliasContainerInterface $container |
||
34 | */ |
||
35 | 6 | public function __construct(AliasContainerInterface $container) |
|
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | 3 | protected function configureMany($config) |
|
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | 5 | public function configureOne($alias, $concrete) |
|
65 | } |
||
66 |