@@ -154,6 +154,9 @@ |
||
| 154 | 154 | ->renderByFormat($output, $formattedTable, $format); |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | + /** |
|
| 158 | + * @param string $format |
|
| 159 | + */ |
|
| 157 | 160 | private function renderTableValue($value, $format) |
| 158 | 161 | { |
| 159 | 162 | if ($value === null) { |
@@ -132,6 +132,9 @@ |
||
| 132 | 132 | } |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | + /** |
|
| 136 | + * @param \Faker\Generator $faker |
|
| 137 | + */ |
|
| 135 | 138 | private function createAddress($faker) |
| 136 | 139 | { |
| 137 | 140 | $country = $this->getCountryCollection() |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | /** |
| 34 | 34 | * @param $name |
| 35 | 35 | * |
| 36 | - * @return mixed |
|
| 36 | + * @return \PDO|null |
|
| 37 | 37 | */ |
| 38 | 38 | public function __get($name) |
| 39 | 39 | { |
@@ -322,7 +322,7 @@ discard block |
||
| 322 | 322 | } |
| 323 | 323 | |
| 324 | 324 | /** |
| 325 | - * @param array $execs |
|
| 325 | + * @param string[] $execs |
|
| 326 | 326 | * @param string $fileName |
| 327 | 327 | * @param InputInterface $input |
| 328 | 328 | * @param OutputInterface $output |
@@ -524,7 +524,7 @@ discard block |
||
| 524 | 524 | |
| 525 | 525 | /** |
| 526 | 526 | * @param null|bool|string $optionAddTime [optional] true for default "suffix", other string values: "prefix", "no" |
| 527 | - * @return array |
|
| 527 | + * @return string[] |
|
| 528 | 528 | */ |
| 529 | 529 | private function getFileNamePrefixSuffix($optionAddTime = null) |
| 530 | 530 | { |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | fwrite(STDERR, implode(PHP_EOL, array( |
| 11 | 11 | 'The suhosin.executor.include.whitelist setting is incorrect.', |
| 12 | 12 | 'Add the following to the end of your `php.ini` or suhosin.ini (Example path [for Debian]: /etc/php5/cli/conf.d/suhosin.ini):', |
| 13 | - ' suhosin.executor.include.whitelist = phar '.$suhosin, |
|
| 13 | + ' suhosin.executor.include.whitelist = phar ' . $suhosin, |
|
| 14 | 14 | '' |
| 15 | 15 | ))); |
| 16 | 16 | exit(1); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | protected function configure() |
| 12 | 12 | { |
| 13 | 13 | $this->setName('media:cache:image:clear') |
| 14 | - ->setDescription('Clears image cache'); |
|
| 14 | + ->setDescription('Clears image cache'); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | /** |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | protected function configure() |
| 12 | 12 | { |
| 13 | 13 | $this->setName('media:cache:jscss:clear') |
| 14 | - ->setDescription('Clears JS/CSS cache'); |
|
| 14 | + ->setDescription('Clears JS/CSS cache'); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | /** |
@@ -104,11 +104,11 @@ discard block |
||
| 104 | 104 | 'meta-version', |
| 105 | 105 | null, |
| 106 | 106 | InputOption::VALUE_REQUIRED, |
| 107 | - 'PhpStorm Meta version ('.self::VERSION_OLD.', '.self::VERSION_2017.')', |
|
| 107 | + 'PhpStorm Meta version (' . self::VERSION_OLD . ', ' . self::VERSION_2017 . ')', |
|
| 108 | 108 | self::VERSION_2017 |
| 109 | 109 | ) |
| 110 | 110 | ->addOption('stdout', null, InputOption::VALUE_NONE, 'Print to stdout instead of file .phpstorm.meta.php') |
| 111 | - ->setDescription('Generates meta data file for PhpStorm auto completion (default version : '.self::VERSION_2017.')'); |
|
| 111 | + ->setDescription('Generates meta data file for PhpStorm auto completion (default version : ' . self::VERSION_2017 . ')'); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | if (preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', $class)) { |
| 362 | 362 | $map .= " '$classPrefix' instanceof \\$class,\n"; |
| 363 | 363 | } else { |
| 364 | - $output->writeln('<warning>Invalid class name <comment>'.$class.'</comment> ignored</warning>'); |
|
| 364 | + $output->writeln('<warning>Invalid class name <comment>' . $class . '</comment> ignored</warning>'); |
|
| 365 | 365 | } |
| 366 | 366 | } |
| 367 | 367 | $map .= " ], \n"; |
@@ -404,7 +404,7 @@ discard block |
||
| 404 | 404 | if (preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', $class)) { |
| 405 | 405 | $map .= " '$classPrefix' instanceof \\$class,\n"; |
| 406 | 406 | } else { |
| 407 | - $output->writeln('<warning>Invalid class name <comment>'.$class.'</comment> ignored</warning>'); |
|
| 407 | + $output->writeln('<warning>Invalid class name <comment>' . $class . '</comment> ignored</warning>'); |
|
| 408 | 408 | } |
| 409 | 409 | } |
| 410 | 410 | $map .= " ], \n"; |
@@ -428,8 +428,8 @@ discard block |
||
| 428 | 428 | } |
| 429 | 429 | } |
| 430 | 430 | $group = str_replace(array(' ', '/'), '_', $group); |
| 431 | - if (\file_put_contents($this->_magentoRootFolder . '/.phpstorm.meta.php/magento_'.$group.'.meta.php', $map)) { |
|
| 432 | - $output->writeln('<info>File <comment>.phpstorm.meta.php/magento_'.$group.'.meta.php</comment> generated</info>'); |
|
| 431 | + if (\file_put_contents($this->_magentoRootFolder . '/.phpstorm.meta.php/magento_' . $group . '.meta.php', $map)) { |
|
| 432 | + $output->writeln('<info>File <comment>.phpstorm.meta.php/magento_' . $group . '.meta.php</comment> generated</info>'); |
|
| 433 | 433 | } |
| 434 | 434 | } |
| 435 | 435 | } |