Completed
Push — patch-442 ( 79ea78 )
by Tom
03:18
created
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/Application/Console/ConsoleEvent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      *
62 62
      * @param string $eventName The name of the event
63 63
      *
64
-     * @return bool true if the specified event has any listeners, false otherwise
64
+     * @return boolean|null true if the specified event has any listeners, false otherwise
65 65
      */
66 66
     public function hasListeners($eventName = null)
67 67
     {
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.