| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class LoggerConfig extends AbstractConfig |
||
| 11 | { |
||
| 12 | public const LOG_PATH = 'log.path'; |
||
| 13 | public const LOG_FILENAME = 'log.filename'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function getLogPath(): string |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | 1 | public function getLogFilename(): string |
|
| 29 | } |
||
| 30 | } |