@@ -110,11 +110,11 @@ discard block |
||
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 |
||
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 | } |