Skip to content

Commit

Permalink
Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelio committed Oct 6, 2023
1 parent cee6cc3 commit dd8a44f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/Services/LegacyImporter/AirportImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ public function run($start = 0)
$rows = $this->db->readRows($this->table, $this->idField, $start);
foreach ($rows as $row) {
$attrs = [
'id' => trim($row->icao),
'icao' => trim($row->icao),
'name' => $row->name,
'country' => $row->country,
'lat' => $row->lat,
'lon' => $row->lng,
'hub' => $row->hub,
'id' => trim($row->icao),
'icao' => trim($row->icao),
'name' => $row->name,
'country' => $row->country,
'lat' => $row->lat,
'lon' => $row->lng,
'hub' => $row->hub,
];

foreach ($set_if_exists as $legacy_name => $current_name) {
Expand Down

0 comments on commit dd8a44f

Please sign in to comment.