@@ -121,6 +121,10 @@ |
||
121 | 121 | return $this; |
122 | 122 | } |
123 | 123 | |
124 | + /** |
|
125 | + * @param string $key |
|
126 | + * @param boolean $value |
|
127 | + */ |
|
124 | 128 | public function setConfigurationDefault($key, $value) |
125 | 129 | { |
126 | 130 | if (!array_key_exists($key, $this->configurationData)) { |
@@ -19,7 +19,7 @@ |
||
19 | 19 | * transformation object. |
20 | 20 | * |
21 | 21 | * @param FormatterOptions $options Options that affect output formatting. |
22 | - * @return Consolidation\OutputFormatters\Transformations\TableTransformation |
|
22 | + * @return TableTransformation |
|
23 | 23 | */ |
24 | 24 | public function restructure(FormatterOptions $options) |
25 | 25 | { |
@@ -17,7 +17,7 @@ |
||
17 | 17 | * transformation object. |
18 | 18 | * |
19 | 19 | * @param FormatterOptions $options Options that affect output formatting. |
20 | - * @return Consolidation\OutputFormatters\Transformations\TableTransformation |
|
20 | + * @return \Consolidation\OutputFormatters\Transformations\TableTransformation |
|
21 | 21 | */ |
22 | 22 | public function restructure(FormatterOptions $options) |
23 | 23 | { |
@@ -34,6 +34,9 @@ |
||
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) { |
@@ -260,6 +260,7 @@ discard block |
||
260 | 260 | |
261 | 261 | /** |
262 | 262 | * Test to see if the stipulated format exists |
263 | + * @param string $format |
|
263 | 264 | */ |
264 | 265 | public function hasFormatter($format) |
265 | 266 | { |
@@ -335,6 +336,9 @@ discard block |
||
335 | 336 | return $structuredOutput; |
336 | 337 | } |
337 | 338 | |
339 | + /** |
|
340 | + * @param \ReflectionClass $structuredOutput |
|
341 | + */ |
|
338 | 342 | protected function canSimplifyToArray($structuredOutput) |
339 | 343 | { |
340 | 344 | foreach ($this->arraySimplifiers as $simplifier) { |
@@ -16,7 +16,7 @@ |
||
16 | 16 | } |
17 | 17 | |
18 | 18 | /** |
19 | - * @param ReflectionClass $dataType |
|
19 | + * @param \ReflectionClass $dataType |
|
20 | 20 | */ |
21 | 21 | public function canSimplify(\ReflectionClass $dataType) |
22 | 22 | { |