It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
The trait Kitodo\Dlf\Validation\LibXmlTrait requires some properties which are not provided by Kitodo\Dlf\Validation\XmlSchemesValidator: $message, $code
Loading history...
30
31
private array $schemes;
32
33
public function __construct(array $configuration)
34
{
35
parent::__construct(DOMDocument::class);
36
$this->schemes = $configuration;
37
}
38
39
/**
40
* Combines the schemes to one schema and validates the DOMDocument against this.
41
*
42
* @param $value DOMDocument The value to validate
43
* @return bool True if is valid
44
*/
45
protected function isSchemeValid(DOMDocument $value): bool