Passed
Pull Request — v1 (#41)
by
unknown
04:26
created
src/Twigpack.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,9 @@
 block discarded – undo
106 106
             if (!empty($settings->errorEntry) && $settings->useDevServer) {
107 107
                 try {
108 108
                     $errorEntry = $settings->errorEntry;
109
-                    if (is_string($errorEntry)) $errorEntry = [$errorEntry];
109
+                    if (is_string($errorEntry)) {
110
+                        $errorEntry = [$errorEntry];
111
+                    }
110 112
                     foreach ($errorEntry as $entry) {
111 113
                         $tag = self::$plugin->manifest->getJsModuleTags($entry, false);
112 114
                         if ($tag !== null) {
Please login to merge, or discard this patch.