GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 665ea8...1b4181 )
by sebastian
15s
created
src/jwk/impl/AsymmetricJWK.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,8 +95,8 @@
 block discarded – undo
95 95
     }
96 96
 
97 97
        /**
98
-     * @return int
99
-     */
98
+        * @return int
99
+        */
100 100
     public function getVisibility()
101 101
     {
102 102
         return $this->visibility;
Please login to merge, or discard this patch.
src/jws/impl/JWS.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -305,11 +305,11 @@
 block discarded – undo
305 305
     }
306 306
 
307 307
      /**
308
-     * @param IJOSEHeader $header
309
-     * @param IJWSPayloadSpec $payload
310
-     * @param string $signature
311
-     * @return IJWS
312
-     */
308
+      * @param IJOSEHeader $header
309
+      * @param IJWSPayloadSpec $payload
310
+      * @param string $signature
311
+      * @return IJWS
312
+      */
313 313
     static public function fromHeaderClaimsAndSignature(IJOSEHeader $header, IJWSPayloadSpec $payload = null , $signature = '')
314 314
     {
315 315
         return new JWS($header, $payload, $signature );
Please login to merge, or discard this patch.
content_encryption/AES_CBC_HS/AES_CBC_HMAC_SHA2_Algorithm.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -90,10 +90,10 @@
 block discarded – undo
90 90
         // MAC_KEY = initial MAC_KEY_LEN octets of K
91 91
         $mac_key = substr($key, 0, $mac_key_len);
92 92
             /**
93
-         * The octet string AL is equal to the number of bits in the
94
-         * Additional Authenticated Data ($aad) expressed as a 64-bit unsigned
95
-         * big-endian integer
96
-         */
93
+             * The octet string AL is equal to the number of bits in the
94
+             * Additional Authenticated Data ($aad) expressed as a 64-bit unsigned
95
+             * big-endian integer
96
+             */
97 97
         $al = ByteUtil::convert2UnsignedLongBE(strlen($aad) * 8);
98 98
         // M = MAC(MAC_KEY, A || IV || E || AL)
99 99
         $secured_input = implode('', array(
Please login to merge, or discard this patch.