diff --git a/app/Models/Airline.php b/app/Models/Airline.php index 7bae2ae0..363475ae 100644 --- a/app/Models/Airline.php +++ b/app/Models/Airline.php @@ -85,7 +85,7 @@ class Airline extends Model */ public function setIataAttribute($iata) { - $this->attributes['iata'] = Str::upper($iata);; + $this->attributes['iata'] = Str::upper($iata); } /** diff --git a/app/Services/Installer/SeederService.php b/app/Services/Installer/SeederService.php index 7f954dd1..b6d5f618 100644 --- a/app/Services/Installer/SeederService.php +++ b/app/Services/Installer/SeederService.php @@ -23,7 +23,7 @@ class SeederService extends Service // Map an environment to a seeder directory, if we want to share public static $seed_mapper = [ 'local' => 'dev', - 'production' => 'prod' + 'production' => 'prod', ]; public function __construct(DatabaseService $databaseSvc)