| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.032 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | 1 | public function check(DOMElement $template, Tag $tag) |
|
| 41 | { |
||
| 42 | 1 | $xpath = new DOMXPath($template->ownerDocument); |
|
| 43 | |||
| 44 | 1 | foreach ($xpath->query($this->query) as $node) |
|
| 45 | { |
||
| 46 | 1 | throw new UnsafeTemplateException("Node '" . $node->nodeName . "' is disallowed because it matches '" . $this->query . "'", $node); |
|
| 47 | } |
||
| 48 | } |
||
| 49 | } |