Completed
Pull Request — develop (#988)
by Daniel
05:08
created
src/N98/Magento/Command/Config/GetCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -154,6 +154,9 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Customer/CreateDummyCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -132,6 +132,9 @@
 block discarded – undo
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()
Please login to merge, or discard this patch.
src/N98/Magento/Command/Database/AbstractDatabaseCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Database/DumpCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.