Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | final class ReadOnlyConfiguration implements ConfigurationInterface |
||
20 | { |
||
21 | /** @var Configuration */ |
||
22 | private $config; |
||
23 | |||
24 | 33 | public function __construct(Configuration $config) |
|
27 | 33 | } |
|
28 | |||
29 | /** |
||
30 | * {@inheritDoc} |
||
31 | */ |
||
32 | 3 | public function get(string $key) |
|
35 | } |
||
36 | |||
37 | 3 | public function exists(string $key): bool |
|
42 |