@@ -82,7 +82,7 @@ |
||
| 82 | 82 | |
| 83 | 83 | $output->writeln($flattenArray[$keyToShow]); |
| 84 | 84 | } else { |
| 85 | - $table =[]; |
|
| 85 | + $table = []; |
|
| 86 | 86 | |
| 87 | 87 | foreach ($flattenArray as $configKey => $configValue) { |
| 88 | 88 | $table[] = [ |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | * @param string $indent |
| 14 | 14 | * @return string|null |
| 15 | 15 | */ |
| 16 | - public static function exportVariable($var, $indent='') |
|
| 16 | + public static function exportVariable($var, $indent = '') |
|
| 17 | 17 | { |
| 18 | 18 | switch (gettype($var)) { |
| 19 | 19 | case 'string': |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | 65 | * @param string $reference |
| 66 | - * @return PHPUnit_Framework_MockObject_MockObject|WriteInterface |
|
| 66 | + * @return \PHPUnit\Framework\MockObject\MockObject |
|
| 67 | 67 | */ |
| 68 | 68 | protected function mockWriterFileCWriteFileAssertion($reference) |
| 69 | 69 | { |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | * @param \SimpleXMLElement $xml |
| 29 | 29 | * @param string $path |
| 30 | 30 | * |
| 31 | - * @return \SimpleXMLElement|\SimpleXMLElement[] |
|
| 31 | + * @return string |
|
| 32 | 32 | * |
| 33 | 33 | * @link https://github.com/astorm/pestle |
| 34 | 34 | * @copyright Pulse Storm LLC, Alan Storm |
@@ -197,6 +197,9 @@ |
||
| 197 | 197 | } |
| 198 | 198 | } |
| 199 | 199 | |
| 200 | + /** |
|
| 201 | + * @param InputInterface $input |
|
| 202 | + */ |
|
| 200 | 203 | private function getAdditionalFields($input) |
| 201 | 204 | { |
| 202 | 205 | $additionalFields = $input->getArgument('additionalFields'); |
@@ -99,7 +99,7 @@ |
||
| 99 | 99 | return true; |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - if($input->getOption(self::DEACTIVATE_OPTION) === true) { |
|
| 102 | + if ($input->getOption(self::DEACTIVATE_OPTION) === true) { |
|
| 103 | 103 | return false; |
| 104 | 104 | } |
| 105 | 105 | |