Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | final class ExistingConfiguration implements ConfigurationLoader |
||
10 | { |
||
11 | /** @var Configuration */ |
||
12 | private $configurations; |
||
13 | |||
14 | 41 | public function __construct(Configuration $configurations) |
|
15 | { |
||
16 | 41 | $this->configurations = $configurations; |
|
17 | 41 | } |
|
18 | |||
19 | 38 | public function getConfiguration() : Configuration |
|
22 | } |
||
23 | } |
||
24 |