Passed
Push — master ( 541fe2...1f8075 )
by Fabien
01:56
created
src/Configuration/Loader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
         $originalConfPath = $confPath;
21 21
 
22 22
         if (\is_dir($confPath)) {
23
-            $confPath = \rtrim($confPath, '/\\') . '/churn.yml';
23
+            $confPath = \rtrim($confPath, '/\\').'/churn.yml';
24 24
         }
25 25
 
26 26
         if (\is_readable($confPath)) {
@@ -33,6 +33,6 @@  discard block
 block discarded – undo
33 33
             return Config::createFromDefaultValues();
34 34
         }
35 35
 
36
-        throw new InvalidArgumentException('The configuration file can not be read at ' . $originalConfPath);
36
+        throw new InvalidArgumentException('The configuration file can not be read at '.$originalConfPath);
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
src/Process/Handler/ParallelProcessHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
 
96 96
         foreach ($processes as $i => $process) {
97 97
             $process->start();
98
-            $pool["$i:" . $file->getDisplayPath()] = $process;
98
+            $pool["$i:".$file->getDisplayPath()] = $process;
99 99
         }
100 100
     }
101 101
 
Please login to merge, or discard this patch.
src/File/FileHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,6 +28,6 @@
 block discarded – undo
28 28
             return $path;
29 29
         }
30 30
 
31
-        return $basePath . '/' . $path;
31
+        return $basePath.'/'.$path;
32 32
     }
33 33
 }
Please login to merge, or discard this patch.