Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class LoggerConfiguration extends PluginRoutingKeyConfiguration implements LoggerConfigurationInterface |
||
17 | { |
||
18 | public const CFG_HANDLER_LIST = 'LOGGER_%s_HANDLERS'; |
||
19 | |||
20 | /** |
||
21 | * {@inheritDoc} |
||
22 | */ |
||
23 | 1 | public function getHandlerList(): iterable |
|
24 | { |
||
25 | 1 | $handlerListSource = $this->get(self::CFG_HANDLER_LIST, MonologPluginConfigurationInterface::HANDLER_DEFAULT); |
|
26 | |||
27 | 1 | return $this->explodeStringToArray($handlerListSource); |
|
28 | } |
||
29 | |||
30 | 1 | public function getName(): string |
|
33 | } |
||
34 | } |
||
35 |