@@ -49,7 +49,7 @@ |
||
| 49 | 49 | /** |
| 50 | 50 | * @param string $name |
| 51 | 51 | * @param string $internalType |
| 52 | - * @param mixed $subject |
|
| 52 | + * @param string $subject |
|
| 53 | 53 | */ |
| 54 | 54 | public static function argumentType($name, $internalType, $subject) |
| 55 | 55 | { |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | /** |
| 86 | 86 | * @param OutputInterface $output |
| 87 | 87 | * |
| 88 | - * @return array |
|
| 88 | + * @return string |
|
| 89 | 89 | */ |
| 90 | 90 | private function askForIndexCodes(OutputInterface $output) |
| 91 | 91 | { |
@@ -155,6 +155,9 @@ |
||
| 155 | 155 | ->renderByFormat($output, $formattedTable, $format); |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | + /** |
|
| 159 | + * @param string $format |
|
| 160 | + */ |
|
| 158 | 161 | private function renderTableValue($value, $format) |
| 159 | 162 | { |
| 160 | 163 | if ($value === null) { |
@@ -135,6 +135,9 @@ |
||
| 135 | 135 | } |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | + /** |
|
| 139 | + * @param \Faker\Generator $faker |
|
| 140 | + */ |
|
| 138 | 141 | private function createAddress($faker) |
| 139 | 142 | { |
| 140 | 143 | $country = $this->getCountryCollection() |
@@ -8,6 +8,7 @@ |
||
| 8 | 8 | { |
| 9 | 9 | /** |
| 10 | 10 | * @param Mage_Eav_Model_Entity_Attribute $attribute |
| 11 | + * @return void |
|
| 11 | 12 | */ |
| 12 | 13 | public function __construct(Mage_Eav_Model_Entity_Attribute $attribute); |
| 13 | 14 | |
@@ -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 | /** |