| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public static function findByStationCode($stationCode) { |
||
| 22 | |||
| 23 | $cityList = array(); |
||
| 24 | include(__DIR__ . '/../../Resources/indianCityList.php'); |
||
| 25 | |||
| 26 | if(key_exists($stationCode, $cityList)) |
||
| 27 | { |
||
| 28 | return $cityList[$stationCode]; |
||
| 29 | } else { |
||
| 30 | |||
| 31 | return "City not found. Please check your station code."; |
||
| 32 | } |
||
| 33 | } |
||
| 34 | |||
| 35 | } |