Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class Wheel extends Distable |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @return string |
||
17 | */ |
||
18 | public static function property(): string |
||
19 | { |
||
20 | return Distance::PROPERTY_WHEELS; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public static function name(): string |
||
27 | { |
||
28 | return 'wheel'; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return float |
||
33 | */ |
||
34 | public static function oneMile(): float |
||
37 | } |
||
38 | |||
39 | } |
||
40 |