toUnit($unit); return (string) round($value, 2); } /** * For the HTTP Resource call */ public function toJson() { return [ 'mi' => round($this->toUnit('miles'), 2), 'nmi' => round($this->toUnit('nmi'), 2), 'km' => round($this->toUnit('meters') / 1000, 2), ]; } }