@@ -34,6 +34,9 @@ discard block |
||
34 | 34 | $this->addXmlChildren($dom, $element, $elementName, $structuredData); |
35 | 35 | } |
36 | 36 | |
37 | + /** |
|
38 | + * @param \DOMElement $xmlParent |
|
39 | + */ |
|
37 | 40 | protected function addXmlChildren(\DOMDocument $dom, $xmlParent, $elementName, $structuredData) |
38 | 41 | { |
39 | 42 | foreach ($structuredData as $key => $value) { |
@@ -52,6 +55,9 @@ discard block |
||
52 | 55 | $this->addXmlData($dom, $xmlParent, $elementName, $value); |
53 | 56 | } |
54 | 57 | |
58 | + /** |
|
59 | + * @param string $childElementName |
|
60 | + */ |
|
55 | 61 | protected function determineElementName($key, $childElementName, $value) |
56 | 62 | { |
57 | 63 | if (is_numeric($key)) { |
@@ -58,7 +58,7 @@ |
||
58 | 58 | return $childElementName; |
59 | 59 | } |
60 | 60 | if (is_object($value)) { |
61 | - $value = (array)$value; |
|
61 | + $value = (array) $value; |
|
62 | 62 | } |
63 | 63 | if (!is_array($value)) { |
64 | 64 | return $key; |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | { |
53 | 53 | return $this->calculateColumnWidths( |
54 | 54 | $rows, |
55 | - function ($cell) { |
|
55 | + function($cell) { |
|
56 | 56 | return strlen($cell); |
57 | 57 | } |
58 | 58 | ); |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | { |
66 | 66 | return $this->calculateColumnWidths( |
67 | 67 | $rows, |
68 | - function ($cell) { |
|
68 | + function($cell) { |
|
69 | 69 | return static::longestWordLength($cell); |
70 | 70 | } |
71 | 71 | ); |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | protected static function longestWordLength($str) |
134 | 134 | { |
135 | 135 | $words = preg_split('#[ /-]#', $str); |
136 | - $lengths = array_map(function ($s) { |
|
136 | + $lengths = array_map(function($s) { |
|
137 | 137 | return strlen($s); |
138 | 138 | }, $words); |
139 | 139 | return max($lengths); |
@@ -188,7 +188,7 @@ |
||
188 | 188 | { |
189 | 189 | return array_reduce( |
190 | 190 | $widths, |
191 | - function ($carry, $item) { |
|
191 | + function($carry, $item) { |
|
192 | 192 | return $carry + $item; |
193 | 193 | } |
194 | 194 | ); |
@@ -48,7 +48,7 @@ |
||
48 | 48 | 'sections' => '\Consolidation\OutputFormatters\Formatters\SectionsFormatter', |
49 | 49 | ]; |
50 | 50 | if (class_exists('Symfony\Component\VarDumper\Dumper\CliDumper')) { |
51 | - $defaultFormatters['var_dump'] = '\Consolidation\OutputFormatters\Formatters\VarDumpFormatter'; |
|
51 | + $defaultFormatters['var_dump'] = '\Consolidation\OutputFormatters\Formatters\VarDumpFormatter'; |
|
52 | 52 | } |
53 | 53 | foreach ($defaultFormatters as $id => $formatterClassname) { |
54 | 54 | $formatter = new $formatterClassname; |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | |
119 | 119 | if (count($validFormats) > 1) { |
120 | 120 | // Make an input option for --format |
121 | - $description = 'Format the result data. Available formats: ' . implode(',', $validFormats); |
|
121 | + $description = 'Format the result data. Available formats: '.implode(',', $validFormats); |
|
122 | 122 | $automaticOptions[FormatterOptions::FORMAT] = new InputOption(FormatterOptions::FORMAT, '', InputOption::VALUE_REQUIRED, $description, $defaultFormat); |
123 | 123 | } |
124 | 124 | |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | |
127 | 127 | if ($availableFields) { |
128 | 128 | $defaultFields = $options->get(FormatterOptions::DEFAULT_FIELDS, [], ''); |
129 | - $description = 'Available fields: ' . implode(', ', $this->availableFieldsList($availableFields)); |
|
129 | + $description = 'Available fields: '.implode(', ', $this->availableFieldsList($availableFields)); |
|
130 | 130 | $automaticOptions[FormatterOptions::FIELDS] = new InputOption(FormatterOptions::FIELDS, '', InputOption::VALUE_REQUIRED, $description, $defaultFields); |
131 | 131 | } elseif ($dataTypeClass->implementsInterface(RestructureInterface::class)) { |
132 | 132 | $automaticOptions[FormatterOptions::FIELDS] = new InputOption(FormatterOptions::FIELDS, '', InputOption::VALUE_REQUIRED, 'Dot notation of fields to include in output.', []); |
@@ -146,8 +146,8 @@ discard block |
||
146 | 146 | protected function availableFieldsList($availableFields) |
147 | 147 | { |
148 | 148 | return array_map( |
149 | - function ($key) use ($availableFields) { |
|
150 | - return $availableFields[$key] . " ($key)"; |
|
149 | + function($key) use ($availableFields) { |
|
150 | + return $availableFields[$key]." ($key)"; |
|
151 | 151 | }, |
152 | 152 | array_keys($availableFields) |
153 | 153 | ); |
@@ -211,10 +211,10 @@ discard block |
||
211 | 211 | */ |
212 | 212 | public function write(OutputInterface $output, $format, $structuredOutput, FormatterOptions $options) |
213 | 213 | { |
214 | - $formatter = $this->getFormatter((string)$format); |
|
214 | + $formatter = $this->getFormatter((string) $format); |
|
215 | 215 | if (!is_string($structuredOutput) && !$this->isValidFormat($formatter, $structuredOutput)) { |
216 | 216 | $validFormats = $this->validFormats($structuredOutput); |
217 | - throw new InvalidFormatException((string)$format, $structuredOutput, $validFormats); |
|
217 | + throw new InvalidFormatException((string) $format, $structuredOutput, $validFormats); |
|
218 | 218 | } |
219 | 219 | if ($structuredOutput instanceof FormatterAwareInterface) { |
220 | 220 | $structuredOutput->setFormatter($formatter); |
@@ -21,7 +21,7 @@ |
||
21 | 21 | * transformation object. First, though, remove any metadata items. |
22 | 22 | * |
23 | 23 | * @param FormatterOptions $options Options that affect output formatting. |
24 | - * @return Consolidation\OutputFormatters\Transformations\TableTransformation |
|
24 | + * @return \Consolidation\OutputFormatters\Transformations\TableTransformation |
|
25 | 25 | */ |
26 | 26 | public function restructure(FormatterOptions $options) |
27 | 27 | { |
@@ -59,6 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | /** |
61 | 61 | * Right-justify the cell data. |
62 | + * @param string $key |
|
62 | 63 | */ |
63 | 64 | protected function justifyCellData($key, $cellData) |
64 | 65 | { |
@@ -76,6 +77,7 @@ discard block |
||
76 | 77 | |
77 | 78 | /** |
78 | 79 | * Determine if this is a column that should be formatted. |
80 | + * @param string $key |
|
79 | 81 | */ |
80 | 82 | protected function isRenderedColumn($key) |
81 | 83 | { |
@@ -102,6 +104,7 @@ discard block |
||
102 | 104 | * This formatter only works with columns whose columns are strings. |
103 | 105 | * To use this formatter for another purpose, override this method |
104 | 106 | * to ensure that the cell data is a string before it is formatted. |
107 | + * @return double |
|
105 | 108 | */ |
106 | 109 | protected function convertCellDataToString($cellData) |
107 | 110 | { |
@@ -110,6 +113,7 @@ discard block |
||
110 | 113 | |
111 | 114 | /** |
112 | 115 | * Get the cached column width for the provided key. |
116 | + * @return integer |
|
113 | 117 | */ |
114 | 118 | protected function columnWidth($key) |
115 | 119 | { |
@@ -2,7 +2,6 @@ |
||
2 | 2 | namespace Consolidation\OutputFormatters\StructuredData; |
3 | 3 | |
4 | 4 | use Consolidation\OutputFormatters\Options\FormatterOptions; |
5 | - |
|
6 | 5 | use Consolidation\OutputFormatters\Formatters\FormatterAwareInterface; |
7 | 6 | use Consolidation\OutputFormatters\Formatters\FormatterAwareTrait; |
8 | 7 |
@@ -4,10 +4,7 @@ |
||
4 | 4 | use Consolidation\OutputFormatters\Validate\ValidationInterface; |
5 | 5 | use Consolidation\OutputFormatters\Options\OverrideOptionsInterface; |
6 | 6 | use Consolidation\OutputFormatters\Options\FormatterOptions; |
7 | -use Consolidation\OutputFormatters\Validate\ValidDataTypesTrait; |
|
8 | 7 | use Symfony\Component\Console\Output\OutputInterface; |
9 | -use Consolidation\OutputFormatters\StructuredData\RestructureInterface; |
|
10 | -use Consolidation\OutputFormatters\Transformations\SimplifiedFormatterInterface; |
|
11 | 8 | use Consolidation\OutputFormatters\Transformations\SimplifyToStringInterface; |
12 | 9 | |
13 | 10 | /** |
@@ -36,7 +36,7 @@ |
||
36 | 36 | } |
37 | 37 | $transformed_fields = []; |
38 | 38 | foreach ($fields as $field) { |
39 | - list($machine_name,$label) = explode(' as ', $field) + [$field, preg_replace('#.*\.#', '', $field)]; |
|
39 | + list($machine_name, $label) = explode(' as ', $field) + [$field, preg_replace('#.*\.#', '', $field)]; |
|
40 | 40 | $transformed_fields[$machine_name] = $label; |
41 | 41 | } |
42 | 42 | return $transformed_fields; |