Conditions | 3 |
Paths | 3 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3.0175 |
Changes | 0 |
1 | <?php |
||
28 | 1 | protected function blockAlertContinue($line, $block) |
|
29 | { |
||
30 | 1 | if (isset($block['complete'])) { |
|
31 | return; |
||
32 | } |
||
33 | |||
34 | 1 | if (preg_match('/:::/', $line['text'], $matches)) { |
|
35 | 1 | $block['complete'] = true; |
|
36 | |||
37 | 1 | return $block; |
|
38 | } |
||
39 | |||
40 | 1 | $block['element']['text'] .= $line['text']."\n"; |
|
41 | |||
42 | 1 | return $block; |
|
43 | } |
||
44 | |||
53 |