Passed
Pull Request — master (#36)
by Théo
02:14
created
src/Box.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the box project.
@@ -61,8 +61,8 @@  discard block
 block discarded – undo
61 61
         $this->phar = $phar;
62 62
         $this->file = $file;
63 63
 
64
-        $this->retrieveRelativeBasePath = function (): void {};
65
-        $this->mapFile = function (): void {};
64
+        $this->retrieveRelativeBasePath = function(): void {};
65
+        $this->mapFile = function(): void {};
66 66
     }
67 67
 
68 68
     /**
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
     {
259 259
         return array_reduce(
260 260
             $this->compactors,
261
-            function (string $contents, Compactor $compactor) use ($file): string {
261
+            function(string $contents, Compactor $compactor) use ($file): string {
262 262
                 return $compactor->compact($file, $contents);
263 263
             },
264 264
             $contents
Please login to merge, or discard this patch.