Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 4 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6540 | 12 | public static function str_iends_with_any(string $str, array $substrings): bool |
|
6541 | { |
||
6542 | if ($substrings === []) { |
||
6543 | return false; |
||
6544 | } |
||
6545 | |||
6546 | foreach ($substrings as &$substring) { |
||
6547 | if (self::str_iends_with($str, $substring)) { |
||
6548 | return true; |
||
6549 | } |
||
6550 | } |
||
6551 | |||
6552 | return false; |
||
6553 | } |
||
14796 |