Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class Meter extends Kilometer |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @return string |
||
12 | */ |
||
13 | public static function property(): string |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * @return string |
||
20 | */ |
||
21 | public static function name(): string |
||
22 | { |
||
23 | return 'meter'; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @return float |
||
28 | */ |
||
29 | public static function oneMile(): float |
||
32 | } |
||
33 | |||
35 |