@@ -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 | } |
@@ -152,12 +152,12 @@ |
||
| 152 | 152 | { |
| 153 | 153 | $unrecognizedKeys = $config->getUnrecognizedKeys(); |
| 154 | 154 | if ([] !== $unrecognizedKeys) { |
| 155 | - $output->writeln('<error>Unrecognized configuration keys: ' . \implode(', ', $unrecognizedKeys) . "</>\n"); |
|
| 155 | + $output->writeln('<error>Unrecognized configuration keys: '.\implode(', ', $unrecognizedKeys)."</>\n"); |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | if ([] === $config->getDirectoriesToScan()) { |
| 159 | 159 | throw new InvalidArgumentException( |
| 160 | - 'Provide the directories you want to scan as arguments, ' . |
|
| 160 | + 'Provide the directories you want to scan as arguments, '. |
|
| 161 | 161 | 'or configure them under "directoriesToScan" in your churn.yml file.' |
| 162 | 162 | ); |
| 163 | 163 | } |