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.
Passed
Branch master (90b318)
by Joni
04:01
created
lib/JWX/JWK/RSA/RSAPublicKeyJWK.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@
 block discarded – undo
35 35
 	 * Constructor
36 36
 	 *
37 37
 	 * @param JWKParameter ...$params
38
+	 * @param JWKParameter[] $params
38 39
 	 * @throws \UnexpectedValueException If missing required parameter
39 40
 	 */
40 41
 	public function __construct(JWKParameter ...$params) {
Please login to merge, or discard this patch.
lib/JWX/JWE/KeyAlgorithm/RSAESKeyAlgorithm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 		return $this->_cek;
53 53
 	}
54 54
 	
55
-	protected function _encryptKey($key, Header &$header) {
55
+	protected function _encryptKey($key, Header&$header) {
56 56
 		if ($key != $this->_cek) {
57 57
 			throw new \LogicException("Content encryption key doesn't match.");
58 58
 		}
Please login to merge, or discard this patch.
lib/JWX/JWE/KeyAlgorithm/AESGCMKWAlgorithm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 		return $this->_cek;
53 53
 	}
54 54
 	
55
-	protected function _encryptKey($key, Header &$header) {
55
+	protected function _encryptKey($key, Header&$header) {
56 56
 		if ($key != $this->_cek) {
57 57
 			throw new \LogicException("Content encryption key doesn't match.");
58 58
 		}
Please login to merge, or discard this patch.
lib/JWX/JWE/KeyAlgorithm/AESKWAlgorithm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 		return $this->_cek;
53 53
 	}
54 54
 	
55
-	protected function _encryptKey($key, Header &$header) {
55
+	protected function _encryptKey($key, Header&$header) {
56 56
 		if ($key != $this->_cek) {
57 57
 			throw new \LogicException("Content encryption key doesn't match.");
58 58
 		}
Please login to merge, or discard this patch.
lib/JWX/JWE/KeyAlgorithm/PBES2Algorithm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 		return $this->_cek;
53 53
 	}
54 54
 	
55
-	protected function _encryptKey($key, Header &$header) {
55
+	protected function _encryptKey($key, Header&$header) {
56 56
 		if ($key != $this->_cek) {
57 57
 			throw new \LogicException("Content encryption key doesn't match.");
58 58
 		}
Please login to merge, or discard this patch.