예제 #1
0
파일: stations.php 프로젝트: Tjoosten/iRail
 /**
  * @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;
 }