Fix issues found by phpcs
This commit is contained in:
parent
dd48adf243
commit
1a9efbac72
2 changed files with 20 additions and 4 deletions
|
@ -51,7 +51,12 @@ class NotesController extends Controller
|
|||
$note->longitude = $lnglat[0];
|
||||
$note->address = $note->place->name;
|
||||
$note->placeLink = '/places/' . $note->place->slug;
|
||||
$note->geoJson = $this->getGeoJson($note->longitude, $note->latitude, $note->place->name, $note->place->icon);
|
||||
$note->geoJson = $this->getGeoJson(
|
||||
$note->longitude,
|
||||
$note->latitude,
|
||||
$note->place->name,
|
||||
$note->place->icon
|
||||
);
|
||||
}
|
||||
$photoURLs = [];
|
||||
$photos = $note->getMedia();
|
||||
|
@ -151,7 +156,12 @@ class NotesController extends Controller
|
|||
$note->longitude = $lnglat[0];
|
||||
$note->address = $note->place->name;
|
||||
$note->placeLink = '/places/' . $note->place->slug;
|
||||
$note->geoJson = $this->getGeoJson($note->longitude, $note->latitude, $note->place->name, $note->place->icon);
|
||||
$note->geoJson = $this->getGeoJson(
|
||||
$note->longitude,
|
||||
$note->latitude,
|
||||
$note->place->name,
|
||||
$note->place->icon
|
||||
);
|
||||
}
|
||||
|
||||
$photoURLs = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue