Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2.0078 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | 1 | public function getReport(string $text): ?array |
|
24 | { |
||
25 | 1 | if (preg_match_all( |
|
26 | 1 | '#\\* <span style="background:\#FCDFE8"><nowiki>([^\n]+)</nowiki></span>\n#', |
|
27 | 1 | $text, |
|
28 | 1 | $matches |
|
29 | 1 | ) > 0 |
|
30 | ) { |
||
31 | // FIXED zizibot : des '<nowiki>' supplémentaires ajoutés à quelques rapports |
||
32 | 1 | return str_replace('<nowiki>', '', $matches[1]); |
|
33 | } |
||
34 | |||
35 | return null; |
||
36 | } |
||
76 |