Failed Conditions
Push — v7 ( dd2573 )
by Florent
03:34
created
src/Component/Checker/CheckerManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     /**
69 69
      * @param array $protectedHeaders
70 70
      * @param array $headers
71
-     * @param array $checked_claims
71
+     * @param string[] $checked_claims
72 72
      */
73 73
     public function checkHeaders(array $protectedHeaders, array $headers, array $checked_claims)
74 74
     {
Please login to merge, or discard this patch.
src/Component/Core/JWKSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
     /**
112 112
      * Remove key from the key set.
113 113
      *
114
-     * @param int|string $key Key to remove from the key set
114
+     * @param string $key Key to remove from the key set
115 115
      *
116 116
      * @return JWKSet
117 117
      */
Please login to merge, or discard this patch.
src/Component/Core/Tests/JWAManagerTest.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -15,9 +15,6 @@
 block discarded – undo
15 15
 
16 16
 use Jose\Component\Core\JWAInterface;
17 17
 use Jose\Component\Core\JWAManager;
18
-use Jose\Component\Core\JWK;
19
-use Jose\Component\Core\JWKSet;
20
-use Jose\Component\Factory\JWAManagerFactory;
21 18
 use Jose\Component\Signature\Algorithm\HS512;
22 19
 use Jose\Component\Signature\Algorithm\RS256;
23 20
 use PHPUnit\Framework\TestCase;
Please login to merge, or discard this patch.
src/Component/KeyManagement/KeyConverter/ECKey.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
     }
196 196
 
197 197
     /**
198
-     * @param object $children
198
+     * @param Object $children
199 199
      */
200 200
     private function verifyVersion(Object $children)
201 201
     {
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     }
205 205
 
206 206
     /**
207
-     * @param object      $children
207
+     * @param Object      $children
208 208
      * @param string|null $x
209 209
      * @param string|null $y
210 210
      */
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
     /**
227
-     * @param object $children
227
+     * @param Object $children
228 228
      *
229 229
      * @return string
230 230
      */
Please login to merge, or discard this patch.