Passed
Pull Request — master (#14)
by Klaas
05:22
created
src/Installer/ArchiveExcludeInstaller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         $excluded   = $definition['archive']['exclude'] ?? [];
68 68
 
69 69
         $excluded = array_map(
70
-            function (string $exclude): string {
70
+            function(string $exclude): string {
71 71
                 return substr($exclude, 0, 1) !== '/'
72 72
                     ? '/' . $exclude
73 73
                     : $exclude;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         $files = array_merge(
79 79
             $this->defaults,
80 80
             array_map(
81
-                function (FileMappingInterface $mapping): string {
81
+                function(FileMappingInterface $mapping): string {
82 82
                     return '/' . $mapping->getRelativeDestination();
83 83
                 },
84 84
                 iterator_to_array(
Please login to merge, or discard this patch.
src/ConfigResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     private $typeResolver;
13 13
 
14 14
     /** @var string */
15
-    private $template = __DIR__  . '/../templates/config/%s.json';
15
+    private $template = __DIR__ . '/../templates/config/%s.json';
16 16
 
17 17
     /**
18 18
      * Constructor.
Please login to merge, or discard this patch.