Total Complexity | 3 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ConfigurationValidator implements ConfigurationValidatorInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var \Dandelion\Configuration\ConfigurationLoaderInterface |
||
17 | */ |
||
18 | protected $configurationLoader; |
||
19 | |||
20 | /** |
||
21 | * @var \Swaggest\JsonSchema\SchemaContract |
||
22 | */ |
||
23 | protected $jsonSchema; |
||
24 | |||
25 | /** |
||
26 | * @param \Dandelion\Configuration\ConfigurationLoaderInterface $configurationLoader |
||
27 | * @param \Swaggest\JsonSchema\SchemaContract $jsonSchema |
||
28 | */ |
||
29 | public function __construct( |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return \Dandelion\Configuration\ConfigurationValidatorInterface |
||
39 | * |
||
40 | * @throws \Dandelion\Exception\ConfigurationNotValidException |
||
41 | */ |
||
42 | public function validate(): ConfigurationValidatorInterface |
||
55 |