Completed
Push — develop ( f63da3...8c2b94 )
by Tom
04:32
created
src/N98/Magento/Command/Installer/SubCommand/InstallMagento.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@
 block discarded – undo
252 252
     }
253 253
 
254 254
     /**
255
-     * @param array $installArgs
255
+     * @param string $installArgs
256 256
      *
257 257
      * @throws \Exception
258 258
      */
Please login to merge, or discard this patch.
src/N98/Magento/Command/Script/Repository/ScriptLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     /**
79 79
      * Reads the first line. If it's a comment return it.
80 80
      *
81
-     * @param $file
81
+     * @param string $file
82 82
      *
83 83
      * @return string
84 84
      */
Please login to merge, or discard this patch.
src/N98/Magento/Command/ScriptCommand.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
     /**
255 255
      * @param InputInterface $input
256 256
      * @param OutputInterface $output
257
-     * @param $commandString
257
+     * @param string $commandString
258 258
      * @throws \RuntimeException
259 259
      */
260 260
     protected function runMagerunCommand(InputInterface $input, OutputInterface $output, $commandString)
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 
271 271
     /**
272 272
      * @param string $commandString
273
-     * @return mixed|string
273
+     * @return string
274 274
      */
275 275
     protected function _prepareShellCommand($commandString)
276 276
     {
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 
321 321
     /**
322 322
      * @param $commandString
323
-     * @return mixed
323
+     * @return string
324 324
      */
325 325
     protected function _replaceScriptVars($commandString)
326 326
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/SubCommand/SubCommandInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -10,21 +10,25 @@  discard block
 block discarded – undo
10 10
 {
11 11
     /**
12 12
      * @param ConfigBag $config
13
+     * @return void
13 14
      */
14 15
     public function setConfig(ConfigBag $config);
15 16
 
16 17
     /**
17 18
      * @param array $commandConfig
19
+     * @return void
18 20
      */
19 21
     public function setCommandConfig(array $commandConfig);
20 22
 
21 23
     /**
22 24
      * @param InputInterface $input
25
+     * @return void
23 26
      */
24 27
     public function setInput(InputInterface $input);
25 28
 
26 29
     /**
27 30
      * @param OutputInterface $output
31
+     * @return void
28 32
      */
29 33
     public function setOutput(OutputInterface $output);
30 34
 
@@ -35,6 +39,7 @@  discard block
 block discarded – undo
35 39
 
36 40
     /**
37 41
      * @param AbstractMagentoCommand $command
42
+     * @return void
38 43
      */
39 44
     public function setCommand(AbstractMagentoCommand $command);
40 45
 
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Cron/RunCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      * @param InputInterface $input
98 98
      * @param OutputInterface $output
99 99
      * @param array $jobs
100
-     * @return mixed
100
+     * @return string
101 101
      * @throws \InvalidArgumentException
102 102
      * @throws \Exception
103 103
      */
Please login to merge, or discard this patch.
src/N98/Magento/Framework/App/Magerun.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      *
52 52
      * @param Bootstrap $bootstrap
53 53
      * @param \Exception $exception
54
-     * @return bool
54
+     * @return boolean|null
55 55
      */
56 56
     public function catchException(Bootstrap $bootstrap, \Exception $exception)
57 57
     {
Please login to merge, or discard this patch.
src/N98/Util/Console/Helper/ParameterHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
      * @param OutputInterface                                $output
203 203
      * @param string                                         $name
204 204
      * @param string                                         $value
205
-     * @param Constraints\Collection|Constraint|Constraint[] $constraints The constraint(s) to validate against.
205
+     * @param Constraints\Collection $constraints The constraint(s) to validate against.
206 206
      *
207 207
      * @return mixed
208 208
      */
Please login to merge, or discard this patch.
src/N98/Util/Console/Helper/Table/Renderer/RendererInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -9,6 +9,7 @@
 block discarded – undo
9 9
     /**
10 10
      * @param OutputInterface $output
11 11
      * @param array $rows
12
+     * @return void
12 13
      */
13 14
     public function render(OutputInterface $output, array $rows);
14 15
 }
Please login to merge, or discard this patch.
src/N98/View/PhpView.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
     /**
18 18
      * @param string $template
19
-     * @return Php
19
+     * @return PhpView
20 20
      */
21 21
     public function setTemplate($template)
22 22
     {
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * @param string $key
30 30
      * @param mixed $value
31 31
      *
32
-     * @return Php
32
+     * @return PhpView
33 33
      */
34 34
     public function assign($key, $value)
35 35
     {
Please login to merge, or discard this patch.