@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $adapterName = $input->getArgument('adapter'); |
34 | 34 | if (!in_array($adapterName, $this->availableAdapters)) { |
35 | 35 | $output->writeln( |
36 | - 'Invalid adapter name supplied! Adapters available: ' . implode(', ', $this->availableAdapters) |
|
36 | + 'Invalid adapter name supplied! Adapters available: '.implode(', ', $this->availableAdapters) |
|
37 | 37 | ); |
38 | 38 | |
39 | 39 | return; |
@@ -45,9 +45,9 @@ discard block |
||
45 | 45 | $filename = $input->getArgument('filename'); |
46 | 46 | |
47 | 47 | if ($fileSystem->exists($filename)) { |
48 | - $output->writeln('File was found using adapter (' . $adapterName . ')'); |
|
48 | + $output->writeln('File was found using adapter ('.$adapterName.')'); |
|
49 | 49 | } else { |
50 | - $output->writeln('File not found using adapter (' . $adapterName . ')'); |
|
50 | + $output->writeln('File not found using adapter ('.$adapterName.')'); |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 | } |