Add missing semi-colon, (even the best of us)

This commit is contained in:
Jonny Barnes 2016-10-06 01:19:45 +01:00
parent c904bcb6d1
commit 4e324c3586

View file

@ -55,7 +55,7 @@ class SyndicateToTwitter implements ShouldQueue
if ($this->note->place_id) {
//we force the job to create a place model to get access
//to the postgis methods
$place = Place::find($this->note->place_id)
$place = Place::find($this->note->place_id);
$lat = $place->location->getLat();
$lng = $place->location->getLng();
}