Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 4.5923 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6082 | public static function str_iends_with_any(string $str, array $substrings): bool |
||
6083 | { |
||
6084 | 4 | if ($substrings === []) { |
|
6085 | return false; |
||
6086 | } |
||
6087 | |||
6088 | 4 | foreach ($substrings as &$substring) { |
|
6089 | 4 | if (self::str_iends_with($str, $substring)) { |
|
6090 | 4 | return true; |
|
6091 | } |
||
6092 | } |
||
6093 | |||
6094 | return false; |
||
6095 | } |
||
13694 |