Skip to content

Commit b54ce80

Browse files
author
Mateusz Krzeszowiak
committed
Fix static tests
1 parent 31b0456 commit b54ce80

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/code/Magento/Theme/Controller/Result/JsFooterPlugin.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ public function beforeSendResponse(Http $subject)
4343
$bodyEndTag = '</body';
4444
$isEndBodyTagFound = strpos($content, $bodyEndTag) !== false;
4545
$shouldMoveJsToBottom = $this->scopeConfig->isSetFlag(
46-
self::XML_PATH_DEV_MOVE_JS_TO_BOTTOM, ScopeInterface::SCOPE_STORE
46+
self::XML_PATH_DEV_MOVE_JS_TO_BOTTOM,
47+
ScopeInterface::SCOPE_STORE
4748
);
4849

4950
if ($isEndBodyTagFound && $shouldMoveJsToBottom) {
@@ -56,7 +57,7 @@ public function beforeSendResponse(Http $subject)
5657

5758
/**
5859
* Extracts and returns script tags found in given content.
59-
*
60+
*
6061
* @param string $content
6162
*/
6263
public function extractScriptTags(&$content)

0 commit comments

Comments
 (0)