Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
46 | 1318 | public function getParagraphContent(): ?string |
|
47 | { |
||
48 | 1318 | if (! $this->lastMatchedBlockParser instanceof ParagraphParser) { |
|
49 | 1234 | return null; |
|
50 | } |
||
51 | |||
52 | 276 | $paragraphParser = $this->lastMatchedBlockParser; |
|
53 | 276 | $content = $paragraphParser->getContentString(); |
|
|
|||
54 | |||
55 | 276 | return $content === '' ? null : $content; |
|
56 | } |
||
58 |