| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | abstract class QueryHandler |
||
| 20 | { |
||
| 21 | protected array $errors = []; |
||
| 22 | |||
| 23 | protected InMemoryStoreSqlite $store; |
||
| 24 | |||
| 25 | protected string $xsd = NamespaceHelper::NAMESPACE_XSD; |
||
| 26 | |||
| 27 | 106 | public function __construct(InMemoryStoreSqlite $store) |
|
| 30 | 106 | } |
|
| 31 | |||
| 32 | 97 | public function getTermID($val, $term = '') |
|
| 33 | { |
||
| 34 | 97 | return $this->store->getTermID($val, $term); |
|
| 35 | } |
||
| 36 | |||
| 37 | 24 | public function getValueHash($val) |
|
| 40 | } |
||
| 41 | } |
||
| 42 |