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