/** * @param $lang * @return array * @throws Exception */ private static function fetchAllStationsFromDB($lang) { $stations = []; $newstations = irail\stations\Stations::getStations(); foreach ($newstations->{"@graph"} as $station) { array_push($stations, stations::transformNewToOldStyle($station, $lang)); } return $stations; }