Failed Conditions
Pull Request — analysis-qyMWJN (#238)
by Florent
06:57 queued 04:30
created
src/Component/Encryption/JWEBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@
 block discarded – undo
269 269
     }
270 270
 
271 271
     /**
272
-     * @param array  $recipient
272
+     * @param Recipient  $recipient
273 273
      * @param string $cek
274 274
      * @param array  $additionalHeaders
275 275
      *
Please login to merge, or discard this patch.
src/Component/Core/Util/ECKey.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @param array $children
106
+     * @param ASNObject[] $children
107 107
      *
108 108
      * @return array
109 109
      */
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
     }
267 267
 
268 268
     /**
269
-     * @param array $children
269
+     * @param ASNObject[] $children
270 270
      *
271 271
      * @return bool
272 272
      */
Please login to merge, or discard this patch.
src/Component/KeyManagement/KeyConverter/ECKey.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @param array $children
106
+     * @param ASNObject[] $children
107 107
      *
108 108
      * @return array
109 109
      */
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
     }
267 267
 
268 268
     /**
269
-     * @param array $children
269
+     * @param ASNObject[] $children
270 270
      *
271 271
      * @return bool
272 272
      */
Please login to merge, or discard this patch.
src/Component/Core/Util/Ecc/Math/GmpMath.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -76,6 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     /**
78 78
      * @see GmpMath::pow()
79
+     * @param integer $exponent
79 80
      */
80 81
     public function pow(\GMP $base, $exponent)
81 82
     {
@@ -92,6 +93,7 @@  discard block
 block discarded – undo
92 93
 
93 94
     /**
94 95
      * @see GmpMath::rightShift()
96
+     * @param integer $positions
95 97
      */
96 98
     public function rightShift(\GMP $number, $positions)
97 99
     {
@@ -134,6 +136,7 @@  discard block
 block discarded – undo
134 136
 
135 137
     /**
136 138
      * @see GmpMath::decHex()
139
+     * @param string $dec
137 140
      */
138 141
     public function decHex($dec)
139 142
     {
@@ -259,6 +262,9 @@  discard block
 block discarded – undo
259 262
 
260 263
     /**
261 264
      * @see GmpMath::baseConvert()
265
+     * @param string $number
266
+     * @param integer $from
267
+     * @param integer $to
262 268
      */
263 269
     public function baseConvert($number, $from, $to)
264 270
     {
Please login to merge, or discard this patch.
src/Component/Core/Util/Ecc/Math/ModularArithmetic.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-     * @param \GMP $minuend
37
+     * @param resource $minuend
38 38
      * @param \GMP $subtrahend
39 39
      *
40 40
      * @return \GMP
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
     }
57 57
 
58 58
     /**
59
-     * @param \GMP $dividend
60
-     * @param \GMP $divisor
59
+     * @param resource $dividend
60
+     * @param resource $divisor
61 61
      *
62 62
      * @return \GMP
63 63
      */
Please login to merge, or discard this patch.
src/Component/Core/Util/Ecc/Math/NumberTheory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
     }
137 137
 
138 138
     /**
139
-     * @param array $base
139
+     * @param \GMP[] $base
140 140
      * @param \GMP  $exponent
141 141
      * @param array $polymod
142 142
      * @param \GMP  $p
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     }
181 181
 
182 182
     /**
183
-     * @param \GMP $a
183
+     * @param resource $a
184 184
      * @param \GMP $p
185 185
      *
186 186
      * @return \GMP
Please login to merge, or discard this patch.
src/Component/Core/Util/Ecc/Primitives/Point.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -306,7 +306,7 @@
 block discarded – undo
306 306
     /**
307 307
      * @param $a
308 308
      * @param $b
309
-     * @param $cond
309
+     * @param integer $cond
310 310
      */
311 311
     public function cswapValue(&$a, &$b, $cond)
312 312
     {
Please login to merge, or discard this patch.