Completed
Pull Request — master (#66)
by Greg
01:50
created
src/FormatterManager.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -114,13 +114,13 @@  discard block
 block discarded – undo
114 114
 
115 115
         if (count($validFormats) > 1) {
116 116
             // Make an input option for --format
117
-            $description = 'Format the result data. Available formats: ' . implode(',', $validFormats);
117
+            $description = 'Format the result data. Available formats: '.implode(',', $validFormats);
118 118
             $automaticOptions[FormatterOptions::FORMAT] = new InputOption(FormatterOptions::FORMAT, '', InputOption::VALUE_REQUIRED, $description, $defaultFormat);
119 119
         }
120 120
 
121 121
         if ($availableFields) {
122 122
             $defaultFields = $options->get(FormatterOptions::DEFAULT_FIELDS, [], '');
123
-            $description = 'Available fields: ' . implode(', ', $this->availableFieldsList($availableFields));
123
+            $description = 'Available fields: '.implode(', ', $this->availableFieldsList($availableFields));
124 124
             $automaticOptions[FormatterOptions::FIELDS] = new InputOption(FormatterOptions::FIELDS, '', InputOption::VALUE_REQUIRED, $description, $defaultFields);
125 125
             $automaticOptions[FormatterOptions::FIELD] = new InputOption(FormatterOptions::FIELD, '', InputOption::VALUE_REQUIRED, "Select just one field, and force format to 'string'.", '');
126 126
         }
@@ -135,8 +135,8 @@  discard block
 block discarded – undo
135 135
     protected function availableFieldsList($availableFields)
136 136
     {
137 137
         return array_map(
138
-            function ($key) use ($availableFields) {
139
-                return $availableFields[$key] . " ($key)";
138
+            function($key) use ($availableFields) {
139
+                return $availableFields[$key]." ($key)";
140 140
             },
141 141
             array_keys($availableFields)
142 142
         );
@@ -200,10 +200,10 @@  discard block
 block discarded – undo
200 200
      */
201 201
     public function write(OutputInterface $output, $format, $structuredOutput, FormatterOptions $options)
202 202
     {
203
-        $formatter = $this->getFormatter((string)$format);
203
+        $formatter = $this->getFormatter((string) $format);
204 204
         if (!is_string($structuredOutput) && !$this->isValidFormat($formatter, $structuredOutput)) {
205 205
             $validFormats = $this->validFormats($structuredOutput);
206
-            throw new InvalidFormatException((string)$format, $structuredOutput, $validFormats);
206
+            throw new InvalidFormatException((string) $format, $structuredOutput, $validFormats);
207 207
         }
208 208
         if ($structuredOutput instanceof FormatterAwareInterface) {
209 209
             $structuredOutput->setFormatter($formatter);
Please login to merge, or discard this patch.