From 4e324c3586277b51a5faefa8f7bf47b59a20a071 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 6 Oct 2016 01:19:45 +0100 Subject: [PATCH 1/2] Add missing semi-colon, (even the best of us) --- app/Jobs/SyndicateToTwitter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/SyndicateToTwitter.php b/app/Jobs/SyndicateToTwitter.php index bc49bd16..8bc184a3 100644 --- a/app/Jobs/SyndicateToTwitter.php +++ b/app/Jobs/SyndicateToTwitter.php @@ -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(); } From b821abc362e94a429434058860fe6c955b103f98 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 6 Oct 2016 01:20:52 +0100 Subject: [PATCH 2/2] Bump version --- changelog.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.md b/changelog.md index 92649bf9..395ce93b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version 0.0.13.9 (2016-10-06) + - Hotfix, add missing semi-colon + ## Version 0.0.13.8 (2016-10-06) - Create a Place model instance in SyndicateToTwitter job to force laravel to access postgis methods