Passed
Push — develop ( 9dec2d...ab5885 )
by Andrew
16:02
created
src/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     /**
45 45
      * @var string The public URL to use when not using the dev server
46 46
      */
47
-    'serverPublic' => App::env('PRIMARY_SITE_URL') . '/dist/',
47
+    'serverPublic' => App::env('PRIMARY_SITE_URL').'/dist/',
48 48
 
49 49
     /**
50 50
      * @var string The JavaScript entry from the manifest.json to inject on Twig error pages
Please login to merge, or discard this patch.
src/Vite.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         Event::on(
138 138
             CraftVariable::class,
139 139
             CraftVariable::EVENT_INIT,
140
-            function (Event $event) {
140
+            function(Event $event) {
141 141
                 /** @var CraftVariable $variable */
142 142
                 $variable = $event->sender;
143 143
                 $variable->set('vite', [
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         Event::on(
151 151
             ClearCaches::class,
152 152
             ClearCaches::EVENT_REGISTER_CACHE_OPTIONS,
153
-            function (RegisterCacheOptionsEvent $event) {
153
+            function(RegisterCacheOptionsEvent $event) {
154 154
                 Craft::debug(
155 155
                     'ClearCaches::EVENT_REGISTER_CACHE_OPTIONS',
156 156
                     __METHOD__
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
         Event::on(
168 168
             View::class,
169 169
             View::EVENT_BEFORE_RENDER_PAGE_TEMPLATE,
170
-            function (TemplateEvent $event) {
170
+            function(TemplateEvent $event) {
171 171
                 self::$templateName = $event->template;
172 172
             }
173 173
         );
Please login to merge, or discard this patch.
src/services/Helper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,11 +54,11 @@
 block discarded – undo
54 54
                 $dirPrefix = CRAFT_TEMPLATES_PATH;
55 55
             }
56 56
             $name = strstr($name, $dirPrefix);
57
-            $name = (string)str_replace($dirPrefix, '', $name);
57
+            $name = (string) str_replace($dirPrefix, '', $name);
58 58
             $path = FileHelper::createUrl(
59 59
                     $settings->criticalPath,
60 60
                     $name
61
-                ) . $settings->criticalSuffix;
61
+                ).$settings->criticalSuffix;
62 62
 
63 63
             return $this->getCssInlineTags($path, $attributes);
64 64
         }
Please login to merge, or discard this patch.