| Total Complexity | 5 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | abstract class AbstractBlockContinueParser implements BlockContinueParserInterface |
||
| 24 | { |
||
| 25 | 640 | public function isContainer(): bool |
|
| 26 | { |
||
| 27 | 640 | return false; |
|
| 28 | } |
||
| 29 | |||
| 30 | 1880 | public function canHaveLazyContinuationLines(): bool |
|
| 31 | { |
||
| 32 | 1880 | return false; |
|
| 33 | } |
||
| 34 | |||
| 35 | 86 | public function canContain(AbstractBlock $childBlock): bool |
|
| 36 | { |
||
| 37 | 86 | return false; |
|
| 38 | } |
||
| 39 | |||
| 40 | 286 | public function addLine(string $line): void |
|
| 42 | 286 | } |
|
| 43 | |||
| 44 | 2180 | public function closeBlock(): void |
|
| 46 | 2180 | } |
|
| 47 | } |
||
| 48 |