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