Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0116 |
Changes | 0 |
1 | <?php |
||
12 | 1 | protected function blockAlert($block) |
|
13 | { |
||
14 | 1 | if (preg_match('/::: (.*)/', $block['text'], $matches)) { |
|
15 | return [ |
||
16 | 1 | 'char' => ':', |
|
17 | 'element' => [ |
||
18 | 1 | 'name' => 'div', |
|
19 | 1 | 'text' => '', |
|
20 | 'attributes' => [ |
||
21 | 1 | 'class' => "alert-{$matches[1]}", |
|
22 | ], |
||
23 | ], |
||
24 | ]; |
||
25 | } |
||
26 | } |
||
27 | |||
53 |