Passed
Push — v1 ( 2a4f93...bf6c9c )
by Andrew
07:11 queued 04:13
created
src/helpers/Manifest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
         $cache = Craft::$app->getCache();
259 259
         $file = $cache->getOrSet(
260 260
             self::CACHE_KEY.$path,
261
-            function () use ($path) {
261
+            function() use ($path) {
262 262
                 $result = null;
263 263
                 $string = @file_get_contents($path);
264 264
                 if ($string) {
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
     protected static function combinePaths(string ...$paths): string
286 286
     {
287 287
         $last_key = \count($paths) - 1;
288
-        array_walk($paths, function (&$val, $key) use ($last_key) {
288
+        array_walk($paths, function(&$val, $key) use ($last_key) {
289 289
             switch ($key) {
290 290
                 case 0:
291 291
                     $val = rtrim($val, '/ ');
Please login to merge, or discard this patch.