From c5e0b621a69c5cbe1efb41343f4b6e3616584d73 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 17 Sep 2016 20:58:47 +0100 Subject: [PATCH] Add missing comma --- app/Console/Commands/ParseCachedWebMentions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/ParseCachedWebMentions.php b/app/Console/Commands/ParseCachedWebMentions.php index 1d219035..c4541c44 100644 --- a/app/Console/Commands/ParseCachedWebMentions.php +++ b/app/Console/Commands/ParseCachedWebMentions.php @@ -45,7 +45,7 @@ class ParseCachedWebMentions extends Command $html = $filesystem->get($filepath); $url = $this->URLFromFilename($filepath); $microformats = \Mf2\parse($html, $url); - $webmention = WebMention::where('source' $url)->firstOrFail(); + $webmention = WebMention::where('source', $url)->firstOrFail(); $webmention->mf2 = json_encode($microformats); $webmention->save(); }