Conditions | 6 |
Paths | 6 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
26 | 12 | public static function isAbsolute($file) |
|
27 | { |
||
28 | 12 | return strspn($file, '/\\', 0, 1) |
|
29 | 10 | || (strlen($file) > 3 && ctype_alpha($file[0]) |
|
30 | 10 | && substr($file, 1, 1) === ':' |
|
31 | 10 | && strspn($file, '/\\', 2, 1) |
|
32 | 2 | ) |
|
33 | 10 | || null !== parse_url($file, PHP_URL_SCHEME) |
|
34 | 12 | ; |
|
35 | } |
||
36 | } |
||
37 |