From 6234805858400caaf03c4cfb8021f643551e369c Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 10 Oct 2020 20:57:54 +0100 Subject: [PATCH] Fix styling issues --- app/Console/Commands/MigratePlaceDataFromPostgis.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/MigratePlaceDataFromPostgis.php b/app/Console/Commands/MigratePlaceDataFromPostgis.php index 797e9981..a4e0f38a 100644 --- a/app/Console/Commands/MigratePlaceDataFromPostgis.php +++ b/app/Console/Commands/MigratePlaceDataFromPostgis.php @@ -48,7 +48,7 @@ class MigratePlaceDataFromPostgis extends Command ) ")); - if (!$locationColumn->exists) { + if (! $locationColumn->exists) { $this->info('There is no Postgis location data in the table. Exiting.'); return 0; @@ -63,7 +63,7 @@ class MigratePlaceDataFromPostgis extends Command ) ")); - if (!$latitudeColumn->exists) { + if (! $latitudeColumn->exists) { $this->error('Latitude and longitude columns have not been created yet'); return 1;