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