@@ -217,7 +217,7 @@ discard block |
||
| 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 |
||
| 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 | }) |