Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 4.3731 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6128 | 4 | public static function str_iends_with_any(string $str, array $substrings): bool |
|
6129 | { |
||
6130 | 4 | if ($substrings === []) { |
|
6131 | return false; |
||
6132 | } |
||
6133 | |||
6134 | 4 | foreach ($substrings as &$substring) { |
|
6135 | 4 | if (self::str_iends_with($str, $substring)) { |
|
6136 | 4 | return true; |
|
6137 | } |
||
6138 | } |
||
6139 | |||
6140 | return false; |
||
6141 | } |
||
13722 |