Passed
Pull Request — master (#287)
by Fabien
01:57
created
src/Command/RunCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -110,11 +110,11 @@  discard block
 block discarded – undo
110 110
         $confPath = $originalConfPath = (string) $input->getOption('configuration');
111 111
 
112 112
         if (\is_dir($confPath)) {
113
-            $confPath = \rtrim($confPath, '/\\') . '/churn.yml';
113
+            $confPath = \rtrim($confPath, '/\\').'/churn.yml';
114 114
         }
115 115
 
116 116
         if (!\is_readable($confPath)) {
117
-            throw new InvalidArgumentException('The configuration file can not be read at ' . $originalConfPath);
117
+            throw new InvalidArgumentException('The configuration file can not be read at '.$originalConfPath);
118 118
         }
119 119
 
120 120
         $content = (string) \file_get_contents($confPath);
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
         }
144 144
 
145 145
         throw new InvalidArgumentException(
146
-            'Provide the directories you want to scan as arguments, ' .
146
+            'Provide the directories you want to scan as arguments, '.
147 147
             'or configure them under "directoriesToScan" in your churn.yml file.'
148 148
         );
149 149
     }
Please login to merge, or discard this patch.