Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public static function getByLoc(string $loc): string |
||
44 | { |
||
45 | // number of slashes |
||
46 | $num = count(array_filter(explode('/', trim($loc, '/')))); |
||
47 | |||
48 | if (!$num) { |
||
49 | return '1.0'; |
||
50 | } |
||
51 | |||
52 | if (($p = (10 - $num) / 10) > 0) { |
||
53 | return '0.'.($p * 10); |
||
54 | } |
||
55 | |||
56 | return '0.1'; |
||
57 | } |
||
58 | } |
||
59 |