| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | 1 | public function check(DOMElement $template, Tag $tag) |
|
| 26 | { |
||
| 27 | 1 | $xpath = new DOMXPath($template->ownerDocument); |
|
| 28 | 1 | $node = $xpath->query('//@disable-output-escaping')->item(0); |
|
| 29 | |||
| 30 | 1 | if ($node) |
|
| 31 | { |
||
| 32 | 1 | throw new UnsafeTemplateException("The template contains a 'disable-output-escaping' attribute", $node); |
|
| 33 | } |
||
| 34 | } |
||
| 35 | } |