| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.032 |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | 3 | public function registerSchema(string $id, string $schemaResourceLocation): void |
|
| 38 | { |
||
| 39 | 3 | if ($this->hasSchema($id)) { |
|
| 40 | throw new \RuntimeException(sprintf('Schema with id "%s" already registered.', $id)); |
||
| 41 | } |
||
| 42 | |||
| 43 | 3 | $this->registeredSchemas[$id] = $schemaResourceLocation; |
|
| 44 | 3 | } |
|
| 45 | |||
| 68 |