1 | <?php |
||
7 | class XmlSchemaValidator implements SchemaValidatorInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $schemaLocation; |
||
13 | |||
14 | 2 | public function __construct(string $schemaLocation) |
|
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 2 | public function validate(string $xmlString): ValidationResult |
|
53 | } |
||
54 |