Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
53 | 99 | public function matchesNextLine(Cursor $cursor) |
|
54 | { |
||
55 | 99 | if (!$cursor->isIndented() && $cursor->getNextNonSpaceCharacter() === '>') { |
|
56 | 51 | $cursor->advanceToNextNonSpaceOrTab(); |
|
57 | 51 | $cursor->advance(); |
|
58 | 51 | $cursor->advanceBySpaceOrTab(); |
|
59 | |||
60 | 51 | return true; |
|
61 | } |
||
62 | |||
63 | 66 | return false; |
|
64 | } |
||
65 | |||
77 |