| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | 4 | private static function getLines(string $message, string $prefix): array |
|
| 42 | { |
||
| 43 | 4 | $matches = []; |
|
| 44 | 4 | if (preg_match('#' . $prefix . '(.*)#is', $message, $matches)) { |
|
| 45 | 3 | $split = preg_split("/\r\n|\n|\r/", $matches[1]); |
|
| 46 | |||
| 47 | 3 | return is_array($split) ? array_map('trim', $split) : []; |
|
|
|
|||
| 48 | } |
||
| 49 | 1 | return []; |
|
| 50 | } |
||
| 52 |