| Conditions | 5 |
| Paths | 4 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 5.583 |
| Changes | 0 | ||
| 1 | <?php |
||
| 69 | 16 | public function matchesNextLine(Cursor $cursor) |
|
| 70 | { |
||
| 71 | 16 | if ($cursor->getIndent() <= 3 && in_array($cursor->getNextNonSpaceCharacter(), static::getIconBlockTypes())) { |
|
| 72 | 14 | $cursor->advanceToNextNonSpaceOrNewline(); |
|
| 73 | 14 | if ($cursor->peek() === '>') { |
|
| 74 | 14 | $cursor->advanceBy(2); |
|
| 75 | 14 | if ($cursor->getCharacter() === ' ') { |
|
| 76 | 14 | $cursor->advance(); |
|
| 77 | 14 | } |
|
| 78 | 14 | return true; |
|
| 79 | } |
||
| 80 | } |
||
| 81 | |||
| 82 | 2 | return false; |
|
| 83 | } |
||
| 84 | } |
||
| 85 |