Conditions | 5 |
Paths | 3 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 5 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | 3 | public function removeDefaultDOMAttributes() |
|
36 | { |
||
37 | 3 | $defaults = get_class_vars(__CLASS__); |
|
38 | 3 | foreach (get_object_vars($this) as $name => $value) { |
|
39 | 3 | if (empty($value) || (array_key_exists($name, $defaults) && $value === $defaults[$name])) |
|
40 | 3 | unset($this->$name); |
|
41 | } |
||
42 | } |
||
43 | } |