Total Complexity | 6 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class MonologLoggerDefinition extends DefinedDefinition |
||
10 | { |
||
11 | |||
12 | public string $name; |
||
13 | public array $handlers; |
||
14 | public array $processors; |
||
15 | |||
16 | public function __construct(string $name, array $handlers = [], array $processors = []) |
||
17 | { |
||
18 | $this->name = $name; |
||
19 | $this->handlers = $handlers; |
||
20 | $this->processors = $processors; |
||
21 | } |
||
22 | |||
23 | public function load(): object |
||
33 | } |
||
34 | |||
35 | protected function loadObjectFromConfig(array $config): object |
||
42 | } |
||
43 | } |
||
44 | } |