1 | <?php |
||
12 | class MonologServiceAbstractFactory implements AbstractFactoryInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $config; |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 2 | public function canCreate(ContainerInterface $container, $requestedName) |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 2 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
35 | |||
36 | 2 | private function createLogger($container, $requestedName) |
|
43 | |||
44 | /** |
||
45 | * @throws NotFoundException |
||
46 | */ |
||
47 | 6 | public function getConfig(ContainerInterface $container): array |
|
63 | |||
64 | /** |
||
65 | * @param array $config |
||
66 | */ |
||
67 | 1 | public function setConfig(array $config): void |
|
71 | } |
||
72 |