Completed
Pull Request — master (#18)
by Greg
02:21
created
src/Formatters/CsvFormatter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@
 block discarded – undo
69 69
         }
70 70
     }
71 71
 
72
+    /**
73
+     * @param FormatterOptions $options
74
+     */
72 75
     protected function writeCsvLine(OutputInterface $output, $data, $options)
73 76
     {
74 77
         $output->write($this->csvEscape($data));
Please login to merge, or discard this patch.
src/FormatterManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     public function write(OutputInterface $output, $format, $structuredOutput, FormatterOptions $options)
44 44
     {
45
-        $formatter = $this->getFormatter((string)$format);
45
+        $formatter = $this->getFormatter((string) $format);
46 46
         $structuredOutput = $this->validateAndRestructure($formatter, $structuredOutput, $options);
47 47
         $formatter->write($output, $structuredOutput, $options);
48 48
     }
Please login to merge, or discard this patch.