Completed
Push — master ( e6b8db...c0bc47 )
by Christian
03:22
created
src/N98/Magento/Application/VarDirectoryChecker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 {
13 13
     /**
14 14
      * @param OutputInterface $output
15
-     * @return null|false
15
+     * @return boolean
16 16
      */
17 17
     public function check(OutputInterface $output)
18 18
     {
Please login to merge, or discard this patch.
src/N98/Magento/Application/MagentoDetector.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
 class MagentoDetector
18 18
 {
19 19
     /**
20
-     * @param \Symfony\Component\Console\Input\InputInterface|null $input
21
-     * @param \Symfony\Component\Console\Output\OutputInterface|null $output
20
+     * @param InputInterface $input
21
+     * @param OutputInterface $output
22 22
      * @param \N98\Magento\Application\Config $config
23 23
      * @param \Symfony\Component\Console\Helper\HelperSet $helperSet
24 24
      * @param string $magentoRootDirectory
Please login to merge, or discard this patch.
src/N98/Magento/Command/Developer/Console/MakeCommandCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 
155 155
     /**
156 156
      * @param InputInterface $input
157
-     * @param $classNameToGenerate
157
+     * @param string $classNameToGenerate
158 158
      */
159 159
     private function writeNewCommandToDiConfig(InputInterface $input, $classNameToGenerate)
160 160
     {
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
     }
178 178
 
179 179
     /**
180
-     * @param $diPath
180
+     * @param string $diPath
181 181
      * @return Util\Config\FileWriter
182 182
      */
183 183
     protected function createDiFileWriter($diPath)
Please login to merge, or discard this patch.
src/N98/Util/Console/Helper/DatabaseHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     }
55 55
 
56 56
     /**
57
-     * @param OutputInterface|null $output
57
+     * @param OutputInterface $output
58 58
      *
59 59
      * @throws RuntimeException
60 60
      * @throws \Magento\Framework\Exception\FileSystemException
Please login to merge, or discard this patch.
src/N98/Util/Console/Helper/ParameterHelper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -226,9 +226,9 @@
 block discarded – undo
226 226
      * @param OutputInterface $output
227 227
      * @param string $name
228 228
      * @param string $value
229
-     * @param Constraints\Collection|Constraint|Constraint[] $constraints The constraint(s) to validate against.
229
+     * @param Constraints\Collection $constraints The constraint(s) to validate against.
230 230
      *
231
-     * @return mixed
231
+     * @return string
232 232
      * @throws \Exception
233 233
      */
234 234
     protected function _validateArgument(OutputInterface $output, $name, $value, $constraints)
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Setup/CompareVersionsCommand.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 
102 102
     /**
103 103
      * @param bool $ignoreDataUpdate
104
-     * @param array $headers
104
+     * @param string[] $headers
105 105
      * @param int $errorCount
106 106
      * @return array
107 107
      */
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
     }
196 196
 
197 197
     /**
198
-     * @param $ignoreDataUpdate
198
+     * @param boolean $ignoreDataUpdate
199 199
      * @param $errorCount
200 200
      * @param $name
201 201
      * @param $module
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
     /**
234 234
      * @param \Symfony\Component\Console\Input\InputInterface $input
235 235
      * @param \Symfony\Component\Console\Output\OutputInterface $output
236
-     * @param array $headers
236
+     * @param string[] $headers
237 237
      * @param array $table
238 238
      * @param JUnitSession $junit
239 239
      * @param int $errorCount
Please login to merge, or discard this patch.