@@ -45,7 +45,7 @@ |
||
45 | 45 | try { |
46 | 46 | FileHelper::ensureFileIsWritable($cachePath); |
47 | 47 | } catch (Throwable $e) { |
48 | - $message = 'Invalid cache file path: ' . $e->getMessage(); |
|
48 | + $message = 'Invalid cache file path: '.$e->getMessage(); |
|
49 | 49 | |
50 | 50 | throw new InvalidArgumentException($message, 0, $e); |
51 | 51 | } |
@@ -156,12 +156,12 @@ |
||
156 | 156 | $output = $output instanceof ConsoleOutputInterface |
157 | 157 | ? $output->getErrorOutput() |
158 | 158 | : $output; |
159 | - $output->writeln('<error>Unrecognized configuration keys: ' . \implode(', ', $unrecognizedKeys) . "</>\n"); |
|
159 | + $output->writeln('<error>Unrecognized configuration keys: '.\implode(', ', $unrecognizedKeys)."</>\n"); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | if ([] === $config->getDirectoriesToScan()) { |
163 | 163 | throw new InvalidArgumentException( |
164 | - 'Provide the directories you want to scan as arguments, ' . |
|
164 | + 'Provide the directories you want to scan as arguments, '. |
|
165 | 165 | 'or configure them under "directoriesToScan" in your churn.yml file.' |
166 | 166 | ); |
167 | 167 | } |