Passed
Push — develop ( c2945e...f18a53 )
by Andrew
07:00 queued 13s
created
src/Twigpack.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         Event::on(
108 108
             View::class,
109 109
             View::EVENT_BEFORE_RENDER_PAGE_TEMPLATE,
110
-            function (TemplateEvent $event) {
110
+            function(TemplateEvent $event) {
111 111
                 self::$templateName = $event->template;
112 112
             }
113 113
         );
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         Event::on(
116 116
             CraftVariable::class,
117 117
             CraftVariable::EVENT_INIT,
118
-            function (Event $event) {
118
+            function(Event $event) {
119 119
                 /** @var CraftVariable $variable */
120 120
                 $variable = $event->sender;
121 121
                 $variable->set('twigpack', ManifestVariable::class);
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
         Event::on(
126 126
             TemplateCaches::class,
127 127
             TemplateCaches::EVENT_AFTER_DELETE_CACHES,
128
-            function (DeleteTemplateCachesEvent $event) {
128
+            function(DeleteTemplateCachesEvent $event) {
129 129
                 // Invalidate the caches when template caches are deleted
130 130
                 $this->clearAllCaches();
131 131
             }
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         Event::on(
135 135
             Plugins::class,
136 136
             Plugins::EVENT_AFTER_INSTALL_PLUGIN,
137
-            function (PluginEvent $event) {
137
+            function(PluginEvent $event) {
138 138
                 if ($event->plugin === $this) {
139 139
                     // Invalidate our caches after we've been installed
140 140
                     $this->clearAllCaches();
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         Event::on(
146 146
             ClearCaches::class,
147 147
             ClearCaches::EVENT_REGISTER_CACHE_OPTIONS,
148
-            function (RegisterCacheOptionsEvent $event) {
148
+            function(RegisterCacheOptionsEvent $event) {
149 149
                 Craft::debug(
150 150
                     'ClearCaches::EVENT_REGISTER_CACHE_OPTIONS',
151 151
                     __METHOD__
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         // delay attaching event handler to the view component after it is fully configured
161 161
         $app = Craft::$app;
162 162
         if ($app->getConfig()->getGeneral()->devMode) {
163
-            $app->on(Application::EVENT_BEFORE_REQUEST, function () use ($app) {
163
+            $app->on(Application::EVENT_BEFORE_REQUEST, function() use ($app) {
164 164
                 $app->getView()->on(View::EVENT_END_BODY, [$this, 'injectErrorEntry']);
165 165
             });
166 166
         }
Please login to merge, or discard this patch.
src/helpers/Manifest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
                 $dirPrefix = CRAFT_TEMPLATES_PATH;
114 114
             }
115 115
             $name = strstr($name, $dirPrefix);
116
-            $name = (string)str_replace($dirPrefix, '', $name);
116
+            $name = (string) str_replace($dirPrefix, '', $name);
117 117
             $path = self::combinePaths(
118 118
                     $config['localFiles']['basePath'],
119 119
                     $config['localFiles']['criticalPrefix'],
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
                 }
367 367
             }
368 368
             // Otherwise, try not-hot files
369
-            $localPrefix = $config['localFiles']['basePath'] . $config['localFiles']['criticalPrefix'];
369
+            $localPrefix = $config['localFiles']['basePath'].$config['localFiles']['criticalPrefix'];
370 370
             $localPath = self::combinePaths(
371 371
                 $localPrefix,
372 372
                 $path
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
         $cacheKeySuffix = $settings->cacheKeySuffix ?? '';
477 477
         $file = $cache->getOrSet(
478 478
             self::CACHE_KEY.$cacheKeySuffix.$path,
479
-            function () use ($path, $callback) {
479
+            function() use ($path, $callback) {
480 480
                 $result = null;
481 481
                 if (UrlHelper::isAbsoluteUrl($path)) {
482 482
                     /**
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
     protected static function combinePaths(string ...$paths): string
526 526
     {
527 527
         $last_key = count($paths) - 1;
528
-        array_walk($paths, function (&$val, $key) use ($last_key) {
528
+        array_walk($paths, function(&$val, $key) use ($last_key) {
529 529
             switch ($key) {
530 530
                 case 0:
531 531
                     $val = rtrim($val, '/ ');
Please login to merge, or discard this patch.