Completed
Pull Request — master (#28)
by Bernardo Vieira da
01:57
created
src/Command/FindCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.