Conditions | 5 |
Paths | 5 |
Total Lines | 17 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 5.2742 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6365 | 5 | public static function str_istarts_with_any(string $str, array $substrings): bool |
|
6366 | { |
||
6367 | 5 | if ($str === '') { |
|
6368 | return false; |
||
6369 | } |
||
6370 | |||
6371 | 5 | if ($substrings === []) { |
|
6372 | return false; |
||
6373 | } |
||
6374 | |||
6375 | 5 | foreach ($substrings as &$substring) { |
|
6376 | 5 | if (self::str_istarts_with($str, (string) $substring)) { |
|
6377 | 5 | return true; |
|
6378 | } |
||
6379 | } |
||
6380 | |||
6381 | 1 | return false; |
|
6382 | } |
||
13722 |