| Conditions | 3 |
| Paths | 3 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 2487 | public function parse(ContextInterface $context, Cursor $cursor): bool |
|
| 25 | { |
||
| 26 | 2487 | if ($cursor->isIndented()) { |
|
| 27 | 183 | return false; |
|
| 28 | } |
||
| 29 | |||
| 30 | 2436 | if ($cursor->getNextNonSpaceCharacter() !== '>') { |
|
| 31 | 2424 | return false; |
|
| 32 | } |
||
| 33 | |||
| 34 | 147 | $cursor->advanceToNextNonSpaceOrTab(); |
|
| 35 | 147 | $cursor->advanceBy(1); |
|
| 36 | 147 | $cursor->advanceBySpaceOrTab(); |
|
| 37 | |||
| 38 | 147 | $context->addBlock(new BlockQuote()); |
|
| 39 | |||
| 40 | 147 | return true; |
|
| 41 | } |
||
| 42 | } |
||
| 43 |