From 364a6268552460e72f121b0154f1d0748687263b Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 17 Sep 2016 21:29:32 +0100 Subject: [PATCH] Fix syntax issue --- app/Jobs/DownloadWebMention.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Jobs/DownloadWebMention.php b/app/Jobs/DownloadWebMention.php index 3ff505bc..592b41d3 100644 --- a/app/Jobs/DownloadWebMention.php +++ b/app/Jobs/DownloadWebMention.php @@ -43,8 +43,8 @@ class DownloadWebMention implements ShouldQueue $filesystem = \Illuminate\FileSystem\FileSystem(); $filesystem->put( $this->createFilenameFromURL($source), - (string) $response->getBody()) - } + (string) $response->getBody() + ); } }