Passed
Push — master ( 5e10f3...452f3f )
by Jonas
02:19
created
src/GetPathsCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         $table = new Table($output);
44 44
         $table
45 45
             ->setHeaders(['Path'])
46
-            ->setRows(array_map(function ($path) {
46
+            ->setRows(array_map(function($path) {
47 47
                 return [$path];
48 48
             }, $paths));
49 49
         $table->render();
Please login to merge, or discard this patch.
src/Helpers/Template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
             throw new BoilerException('Include function must be an array.');
189 189
         }
190 190
 
191
-        return array_map(function ($fileName) {
191
+        return array_map(function($fileName) {
192 192
             $templateFile = $this->getTemplate($fileName);
193 193
             if ($templateFile === null) {
194 194
                 throw new BoilerException('Included file `' . $fileName . '` does not exists');
Please login to merge, or discard this patch.