@@ -20,7 +20,7 @@ discard block |
||
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 |
||
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 | } |
@@ -95,7 +95,7 @@ |
||
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 |
@@ -28,6 +28,6 @@ |
||
28 | 28 | return $path; |
29 | 29 | } |
30 | 30 | |
31 | - return $basePath . '/' . $path; |
|
31 | + return $basePath.'/'.$path; |
|
32 | 32 | } |
33 | 33 | } |