Conditions | 3 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
25 | public function __construct(SchemaValidator $validator = null, $schema = null) |
||
26 | { |
||
27 | if (null === $schema) { |
||
28 | $schema = json_decode(file_get_contents(__DIR__ . '/../../../../../assets/swagger-schema.json')); |
||
29 | } |
||
30 | parent::__construct($schema, $validator ?: new DefaultValidator()); |
||
31 | } |
||
32 | } |
||
33 |