Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
21 | class LoggerProviderTypeConfiguration extends PluginRoutingKeyConfiguration implements LoggerProviderTypeConfigurationInterface |
||
22 | { |
||
23 | public const LOGGER_LOG_LEVEL = 'LOGGER_%s_LOG_LEVEL'; |
||
24 | public const CFG_LOGGER_PROVIDER_TYPE = 'LOGGER_%s_PROVIDER_TYPE'; |
||
25 | |||
26 | 3 | public function getLogLevel(): LogLevel |
|
34 | } |
||
35 | |||
36 | 1 | public function getType(): string |
|
37 | { |
||
38 | 1 | return $this->get(self::CFG_LOGGER_PROVIDER_TYPE); |
|
39 | } |
||
40 | |||
41 | 1 | public function getLoggerName(): string |
|
44 | } |
||
45 | } |
||
46 |