Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Krzeszowiak committed Apr 20, 2020
1 parent 036f99f commit 9687370
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function beforeSendResponse(Http $subject)
);

if ($isEndBodyTagFound && $shouldMoveJsToBottom) {
$scripts = $this->extractScriptTags($content)
$scripts = $this->extractScriptTags($content);
if ($scripts) {
$content = str_replace($bodyEndTag, "$scripts\n$bodyEndTag", $content);
$subject->setContent($content);
Expand Down

0 comments on commit 9687370

Please sign in to comment.