Conditions | 6 |
Paths | 5 |
Total Lines | 23 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 6.027 |
Changes | 0 |
1 | <?php |
||
16 | 4 | public function __get($name) |
|
17 | { |
||
18 | // init |
||
19 | 4 | $name = \strtolower($name); |
|
20 | |||
21 | 4 | if ($this->count() > 0) { |
|
22 | 3 | $return = []; |
|
23 | |||
24 | 3 | foreach ($this as $node) { |
|
25 | 3 | if ($node instanceof SimpleHtmlDomInterface) { |
|
26 | 3 | $return[] = $node->{$name}; |
|
27 | } |
||
28 | } |
||
29 | |||
30 | 3 | return $return; |
|
31 | } |
||
32 | |||
33 | 1 | if ($name === 'plaintext' || $name === 'outertext') { |
|
34 | 1 | return []; |
|
35 | } |
||
36 | |||
37 | return null; |
||
38 | } |
||
39 | |||
68 |