| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class TestModelParser extends AbstractModelParser |
||
| 11 | { |
||
| 12 | private const SCHEMA_LOCATION = "tests/TestModel/Resources/TestModel/Testmodel.xsd"; |
||
| 13 | private const TEST_NS = "http://test.org/animals"; |
||
| 14 | |||
| 15 | public function __construct() |
||
| 16 | { |
||
| 17 | $this->addSchema(self::TEST_NS, self::SCHEMA_LOCATION); |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function createModelInstance(DomDocumentInterface $document): ModelInstanceInterface |
||
| 23 | } |
||
| 24 | } |
||
| 25 |