Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | protected static function lastPregError(): string |
||
10 | { |
||
11 | $pcreConstants = get_defined_constants(true)['pcre']; |
||
12 | $pcreErrors = array_filter($pcreConstants, function ($errorMessage) { |
||
13 | return Str::endsWith($errorMessage, '_ERROR'); |
||
14 | }, ARRAY_FILTER_USE_KEY); |
||
15 | |||
16 | return array_search(preg_last_error(), $pcreErrors, true); |
||
17 | } |
||
18 | } |
||
19 |