Conditions | 4 |
Paths | 4 |
Total Lines | 25 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | parent::getAllowedAttributes() |
||
26 | ); |
||
27 | } |
||
28 | |||
29 | protected function doClean(LoggerInterface $logger = null) |
||
30 | { |
||
31 | // Must have "href" attribute. |
||
32 | if (!$this->hasAttribute('href')) { |
||
33 | return false; |
||
34 | } |
||
35 | |||
36 | // Must have either "rel" or "itemprop" attribute, but not both. |
||
37 | /// @todo |
||
38 | |||
39 | return true; |
||
40 | } |
||
41 | } |
||
42 |