Total Complexity | 7 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class Universe { |
||
7 | |||
8 | /** |
||
9 | * @param $from |
||
10 | * @param $to |
||
11 | * |
||
12 | * @return float|int |
||
13 | */ |
||
14 | public static function distance($from, $to) { |
||
26 | } |
||
27 | |||
28 | public static function getBaseGalaxyDistance() { |
||
29 | return SN::$config->uni_galaxy_distance ? SN::$config->uni_galaxy_distance : UNIVERSE_GALAXY_DISTANCE; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * Get fleet flying speed aka... hmph... fleet flying speed |
||
34 | * |
||
35 | * @param bool $plain |
||
36 | * |
||
37 | * @return float|int |
||
38 | */ |
||
39 | public static function flt_server_flight_speed_multiplier($plain = false) { |
||
41 | } |
||
42 | |||
44 |