Style fixes

This commit is contained in:
Nabeel Shahzad
2021-06-08 17:49:42 -04:00
parent 544462f420
commit dead1cfd0f
2 changed files with 2 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ class Airline extends Model
*/ */
public function setIataAttribute($iata) public function setIataAttribute($iata)
{ {
$this->attributes['iata'] = Str::upper($iata);; $this->attributes['iata'] = Str::upper($iata);
} }
/** /**

View File

@@ -23,7 +23,7 @@ class SeederService extends Service
// Map an environment to a seeder directory, if we want to share // Map an environment to a seeder directory, if we want to share
public static $seed_mapper = [ public static $seed_mapper = [
'local' => 'dev', 'local' => 'dev',
'production' => 'prod' 'production' => 'prod',
]; ];
public function __construct(DatabaseService $databaseSvc) public function __construct(DatabaseService $databaseSvc)