Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
17 | 13 | public function parse($html) |
|
18 | { |
||
19 | 13 | $posOfNextElement = strpos($html, '<'); |
|
20 | 13 | if ($posOfNextElement === false) { |
|
21 | 3 | $this->value = $html; |
|
22 | |||
23 | 3 | return ''; |
|
24 | } |
||
25 | |||
26 | 10 | $this->value = trim(substr($html, 0, $posOfNextElement)); |
|
27 | |||
28 | 10 | return substr($html, $posOfNextElement); |
|
29 | } |
||
30 | |||
50 |