| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 8 | class CompilerConfiguration extends AbstractCompilerConfiguration |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var array<string, mixed> |
||
| 12 | */ |
||
| 13 | private array $configuration; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param array<string, mixed> $configuration |
||
| 17 | */ |
||
| 18 | public function __construct(array $configuration) |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getConfiguration(): array |
||
| 24 | { |
||
| 25 | return $this->configuration; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | public function getValue(string $key) |
||
| 34 | } |
||
| 35 | } |
||
| 36 |