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