| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | final class DebugConfig extends InjectableConfig |
||
| 20 | { |
||
| 21 | public const CONFIG = 'debug'; |
||
| 22 | |||
| 23 | protected array $config = [ |
||
| 24 | 'collectors' => [], |
||
| 25 | 'tags' => [], |
||
| 26 | ]; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return array<TCollector> |
||
| 30 | */ |
||
| 31 | 8 | public function getCollectors(): array |
|
| 32 | { |
||
| 33 | 8 | return $this->config['collectors']; |
|
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return array<non-empty-string, TTag> |
||
|
|
|||
| 38 | */ |
||
| 39 | 10 | public function getTags(): array |
|
| 42 | } |
||
| 43 | } |
||
| 44 |