Completed
Pull Request — master (#3652)
by
unknown
06:28
created
app/PlaceLocation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
         // Find our own co-ordinates and those of any child places
218 218
         $latitudes = DB::table('placelocation')
219 219
             ->whereNotNull('pl_lati')
220
-            ->where(function($qry) {
220
+            ->where(function ($qry) {
221 221
                 $qry->where('pl_parent_id', '=', $this->id())
222 222
                     ->orWhere('pl_id', '=', $this->id());
223 223
             })
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 
230 230
         $longitudes = DB::table('placelocation')
231 231
             ->whereNotNull('pl_long')
232
-            ->where(function($qry) {
232
+            ->where(function ($qry) {
233 233
                 $qry->where('pl_parent_id', '=', $this->id())
234 234
                     ->orWhere('pl_id', '=', $this->id());
235 235
             })
Please login to merge, or discard this patch.