1 | <?php |
||
12 | class JsonSchemaValidatorFactory extends AbstractSchemaValidatorFactory implements SchemaValidatorFactoryInterface |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | 2 | public function getValidator(string $id): SchemaValidatorInterface |
|
27 | |||
28 | /** |
||
29 | * @param string $id |
||
30 | * |
||
31 | * @throws \InvalidArgumentException |
||
32 | * @throws FileLocatorFileNotFoundException |
||
33 | * |
||
34 | * @return \stdClass |
||
35 | */ |
||
36 | 2 | protected function createSchema(string $id): \stdClass |
|
50 | } |
||
51 |