| Conditions | 3 |
| Paths | 3 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 36 | public static function getByLoc(string $loc): string |
|
| 34 | { |
||
| 35 | // number of slashes |
||
| 36 | 36 | $num = count(array_filter(explode('/', trim($loc, '/')))); |
|
| 37 | |||
| 38 | 36 | if (!$num) { |
|
| 39 | 12 | return '1.0'; |
|
| 40 | } |
||
| 41 | |||
| 42 | 24 | if (($p = (10 - $num) / 10) > 0) { |
|
| 43 | 20 | return '0.'.($p * 10); |
|
| 44 | } |
||
| 45 | |||
| 46 | 4 | return '0.1'; |
|
| 47 | } |
||
| 48 | } |
||
| 49 |