Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.0466 |
Changes | 0 |
1 | <?php |
||
6371 | 7 | public static function str_ends_with_any(string $str, array $substrings): bool |
|
6372 | { |
||
6373 | 7 | if ($substrings === []) { |
|
6374 | return false; |
||
6375 | } |
||
6376 | |||
6377 | 7 | foreach ($substrings as &$substring) { |
|
6378 | 7 | if (\substr($str, -\strlen($substring)) === $substring) { |
|
6379 | 1 | return true; |
|
6380 | } |
||
6381 | } |
||
6382 | |||
6383 | 6 | return false; |
|
6384 | } |
||
14792 |