We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db02b24 commit 543118cCopy full SHA for 543118c
CHANGELOG.md
@@ -1,4 +1,5 @@
1
## [Unreleased]
2
+* Fixed: Issue when adding a new schema and not resetting the validator
3
4
## [2.0.0] - 2023-04-10
5
* Added: Major refactor for PHP 7.4 upwards
src/BaseDocument.php
@@ -50,6 +50,7 @@ public function loadSchema($data): void
50
{
51
$loader = new Loader();
52
$this->schema = $loader->getSchema($data);
53
+ $this->validator = null;
54
}
55
56
public function tidy(bool $order = false): void
0 commit comments