Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.0466 |
Changes | 0 |
1 | <?php |
||
5996 | 7 | public static function str_ends_with_any(string $str, array $substrings): bool |
|
5997 | { |
||
5998 | 7 | if ($substrings === []) { |
|
5999 | return false; |
||
6000 | } |
||
6001 | |||
6002 | 7 | foreach ($substrings as &$substring) { |
|
6003 | 7 | if (\substr($str, -\strlen($substring)) === $substring) { |
|
6004 | 1 | return true; |
|
6005 | } |
||
6006 | } |
||
6007 | |||
6008 | 6 | return false; |
|
6009 | } |
||
13722 |