Completed
Push — develop ( 767f6b...e67350 )
by Tom
03:18
created
src/N98/Magento/Command/Database/AbstractShowCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      *
138 138
      * @param array $row
139 139
      *
140
-     * @return array
140
+     * @return string[]
141 141
      */
142 142
     protected function getVariableDescription(array $row)
143 143
     {
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     }
160 160
 
161 161
     /**
162
-     * @param array $header
162
+     * @param string[] $header
163 163
      * @param array $rows
164 164
      */
165 165
     protected function renderTable(array $header, array $rows)
Please login to merge, or discard this patch.
shared/src/N98/Util/ArrayFunctions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * @param array $matrix
44 44
      * @param string $key key to filter
45
-     * @param mixed $value to compare against (strict comparison)
45
+     * @param string $value to compare against (strict comparison)
46 46
      * @return array
47 47
      */
48 48
     public static function matrixFilterByValue(array $matrix, $key, $value)
Please login to merge, or discard this patch.
tests/N98/Magento/TestApplication.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
     /**
187 187
      *
188 188
      *
189
-     * @param  mixed $value
189
+     * @param  string|null $value
190 190
      * @return PHPUnit_Framework_MockObject_Stub_Return
191 191
      * @since  Method available since Release 3.0.0
192 192
      */
Please login to merge, or discard this patch.
src/N98/Magento/Command/Developer/Console/Structure/DDLTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     }
78 78
 
79 79
     /**
80
-     * @param array|DDLTableColumn[] $columnDefinitions
80
+     * @param DDLTableColumn[] $columnDefinitions
81 81
      */
82 82
     public function setColumns(array $columnDefinitions)
83 83
     {
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
@@ -446,7 +446,7 @@
 block discarded – undo
446 446
 
447 447
     /**
448 448
      * @param null|bool|string $optionAddTime [optional] true for default "suffix", other string values: "prefix", "no"
449
-     * @return array
449
+     * @return string[]
450 450
      */
451 451
     private function getFileNamePrefixSuffix($optionAddTime = null)
452 452
     {
Please login to merge, or discard this patch.
src/N98/Util/VerifyOrDie.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     /**
51 51
      * @param string $name
52 52
      * @param string $internalType
53
-     * @param mixed $subject
53
+     * @param string $subject
54 54
      */
55 55
     public static function argumentType($name, $internalType, $subject)
56 56
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Config/Store/DeleteCommand.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,6 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
     /**
92 92
      *
93
+     * @param string $scopeId
93 94
      */
94 95
     private function resolvePaths($path, $scopeId)
95 96
     {
@@ -123,7 +124,7 @@  discard block
 block discarded – undo
123 124
      * @param InputInterface $input
124 125
      * @param WriterInterface $configWriter
125 126
      * @param                $path
126
-     * @param                $scopeId
127
+     * @param                string $scopeId
127 128
      *
128 129
      * @return array
129 130
      */
Please login to merge, or discard this patch.
src/N98/Magento/Command/Config/Store/GetCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -156,6 +156,9 @@
 block discarded – undo
156 156
             ->renderByFormat($output, $formattedTable, $format);
157 157
     }
158 158
 
159
+    /**
160
+     * @param string $format
161
+     */
159 162
     private function renderTableValue($value, $format)
160 163
     {
161 164
         if ($value === null) {
Please login to merge, or discard this patch.
src/N98/Magento/Command/SelfUpdateCommand.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -137,9 +137,9 @@  discard block
 block discarded – undo
137 137
 
138 138
     /**
139 139
      * @param \Symfony\Component\Console\Output\OutputInterface $output
140
-     * @param $rfs
141
-     * @param $remoteFilename
142
-     * @param $tempFilename
140
+     * @param RemoteFilesystem $rfs
141
+     * @param string $remoteFilename
142
+     * @param string $tempFilename
143 143
      */
144 144
     private function downloadNewVersion(OutputInterface $output, $rfs, $remoteFilename, $tempFilename)
145 145
     {
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
     }
221 221
 
222 222
     /**
223
-     * @param $latest
223
+     * @param string $latest
224 224
      * @param $loadUnstable
225 225
      * @return bool
226 226
      */
Please login to merge, or discard this patch.