Completed
Push — develop ( a2b494...664288 )
by Tom
12:01
created
src/N98/Util/Console/Helper/ParameterHelper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -222,9 +222,9 @@
 block discarded – undo
222 222
      * @param OutputInterface                                $output
223 223
      * @param string                                         $name
224 224
      * @param string                                         $value
225
-     * @param Constraints\Collection|Constraint|Constraint[] $constraints The constraint(s) to validate against.
225
+     * @param Constraints\Collection $constraints The constraint(s) to validate against.
226 226
      *
227
-     * @return mixed
227
+     * @return string
228 228
      */
229 229
     protected function _validateArgument(OutputInterface $output, $name, $value, $constraints)
230 230
     {
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($columnDefinitions)
83 83
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Installer/SubCommand/DownloadMagento.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             throw new RuntimeException('A magento installation already exists in this folder');
41 41
         }
42 42
 
43
-        $args = new ProcessArguments(array($this->config['composer_bin'], 'create-project', ));
43
+        $args = new ProcessArguments(array($this->config['composer_bin'], 'create-project',));
44 44
         $args
45 45
             // Add composer options
46 46
             ->addArgs($package['options'])
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.