Completed
Push — develop ( 713d02...19f731 )
by Tom
03:40
created
src/N98/Util/VerifyOrDie.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Database/DumpCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -313,7 +313,7 @@
 block discarded – undo
313 313
     }
314 314
 
315 315
     /**
316
-     * @param array $execs
316
+     * @param string[] $execs
317 317
      * @param string $fileName
318 318
      * @param InputInterface $input
319 319
      * @param OutputInterface $output
Please login to merge, or discard this patch.
src/N98/Magento/Command/Indexer/ReindexCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Config/GetCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -155,6 +155,9 @@
 block discarded – undo
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) {
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
@@ -135,6 +135,9 @@
 block discarded – undo
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()
Please login to merge, or discard this patch.
Magento/Command/Developer/Setup/Script/Attribute/EntityType/EntityType.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@
 block discarded – undo
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
 
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.