Passed
Push — master ( 88c05f...b540d0 )
by Fabien
01:56
created
src/Configuration/Loader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
         $originalConfPath = $confPath;
20 20
 
21 21
         if (\is_dir($confPath)) {
22
-            $confPath = \rtrim($confPath, '/\\') . '/churn.yml';
22
+            $confPath = \rtrim($confPath, '/\\').'/churn.yml';
23 23
         }
24 24
 
25 25
         if (!\is_readable($confPath)) {
26
-            throw new InvalidArgumentException('The configuration file can not be read at ' . $originalConfPath);
26
+            throw new InvalidArgumentException('The configuration file can not be read at '.$originalConfPath);
27 27
         }
28 28
 
29 29
         $content = (string) \file_get_contents($confPath);
Please login to merge, or discard this patch.
src/Command/RunCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@
 block discarded – undo
211 211
         }
212 212
 
213 213
         throw new InvalidArgumentException(
214
-            'Provide the directories you want to scan as arguments, ' .
214
+            'Provide the directories you want to scan as arguments, '.
215 215
             'or configure them under "directoriesToScan" in your churn.yml file.'
216 216
         );
217 217
     }
Please login to merge, or discard this patch.