From dead1cfd0f8b22c028b5bdf10829beaeaa506cd0 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Tue, 8 Jun 2021 17:49:42 -0400 Subject: [PATCH] Style fixes --- app/Models/Airline.php | 2 +- app/Services/Installer/SeederService.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)