Completed
Pull Request — master (#18)
by Greg
02:22
created
src/FormatterManager.php 2 patches
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,6 +85,9 @@  discard block
 block discarded – undo
85 85
         return $formatter;
86 86
     }
87 87
 
88
+    /**
89
+     * @param string $format
90
+     */
88 91
     public function hasFormatter($format)
89 92
     {
90 93
         return array_key_exists($format, $this->formatters);
@@ -135,8 +138,7 @@  discard block
 block discarded – undo
135 138
      * Restructure the data as necessary (e.g. to select or reorder fields).
136 139
      *
137 140
      * @param mixed $structuredOutput
138
-     * @param array $configurationData
139
-     * @param array $options
141
+     * @param FormatterOptions $options
140 142
      * @return mixed
141 143
      */
142 144
     public function restructureData($structuredOutput, FormatterOptions $options)
@@ -156,8 +158,7 @@  discard block
 block discarded – undo
156 158
      * validation will not occur.
157 159
      *
158 160
      * @param mixed $structuredOutput
159
-     * @param array $configurationData
160
-     * @param array $options
161
+     * @param FormatterOptions $options
161 162
      * @return mixed
162 163
      */
163 164
     public function overrideRestructure(FormatterInterface $formatter, $structuredOutput, FormatterOptions $options)
Please login to merge, or discard this 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, $options);
45
+        $formatter = $this->getFormatter((string) $format, $options);
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.
src/FormatterOptions.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@  discard block
 block discarded – undo
43 43
         return new self($configurationData + $this->getConfigurationData(), $this->getOptions());
44 44
     }
45 45
 
46
+    /**
47
+     * @param string $key
48
+     */
46 49
     public function get($key, $defaults = [], $default = false)
47 50
     {
48 51
         $value = $this->fetch($key, $defaults, $default);
@@ -102,6 +105,10 @@  discard block
 block discarded – undo
102 105
         return $this;
103 106
     }
104 107
 
108
+    /**
109
+     * @param string $key
110
+     * @param boolean $value
111
+     */
105 112
     public function setConfigurationDefault($key, $value)
106 113
     {
107 114
         if (!array_key_exists($key, $this->configurationData)) {
Please login to merge, or discard this patch.
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.