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 ( d79416...c4f121 )
by Joni
03:43
created
lib/JWX/JWK/Parameter/ModulusParameter.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -11,16 +11,16 @@
 block discarded – undo
11 11
  */
12 12
 class ModulusParameter extends JWKParameter
13 13
 {
14
-    use Base64UIntValue;
14
+	use Base64UIntValue;
15 15
     
16
-    /**
17
-     * Constructor.
18
-     *
19
-     * @param string $n Modulus in base64urlUInt encoding
20
-     */
21
-    public function __construct($n)
22
-    {
23
-        $this->_validateEncoding($n);
24
-        parent::__construct(self::PARAM_MODULUS, $n);
25
-    }
16
+	/**
17
+	 * Constructor.
18
+	 *
19
+	 * @param string $n Modulus in base64urlUInt encoding
20
+	 */
21
+	public function __construct($n)
22
+	{
23
+		$this->_validateEncoding($n);
24
+		parent::__construct(self::PARAM_MODULUS, $n);
25
+	}
26 26
 }
Please login to merge, or discard this patch.
lib/JWX/JWK/Parameter/KeyIDParameter.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@
 block discarded – undo
11 11
  */
12 12
 class KeyIDParameter extends JWKParameter
13 13
 {
14
-    use StringParameterValue;
14
+	use StringParameterValue;
15 15
     
16
-    /**
17
-     * Constructor.
18
-     *
19
-     * @param string $id Key ID
20
-     */
21
-    public function __construct($id)
22
-    {
23
-        parent::__construct(self::PARAM_KEY_ID, $id);
24
-    }
16
+	/**
17
+	 * Constructor.
18
+	 *
19
+	 * @param string $id Key ID
20
+	 */
21
+	public function __construct($id)
22
+	{
23
+		parent::__construct(self::PARAM_KEY_ID, $id);
24
+	}
25 25
 }
Please login to merge, or discard this patch.
lib/JWX/JWK/Parameter/CoordinateParameter.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,13 +9,13 @@
 block discarded – undo
9 9
  */
10 10
 abstract class CoordinateParameter extends JWKParameter
11 11
 {
12
-    /**
13
-     * Get coordinate in octet string representation.
14
-     *
15
-     * @return string
16
-     */
17
-    public function coordinateOctets()
18
-    {
19
-        return Base64::urlDecode($this->_value);
20
-    }
12
+	/**
13
+	 * Get coordinate in octet string representation.
14
+	 *
15
+	 * @return string
16
+	 */
17
+	public function coordinateOctets()
18
+	{
19
+		return Base64::urlDecode($this->_value);
20
+	}
21 21
 }
Please login to merge, or discard this patch.
lib/JWX/JWK/Parameter/FirstCRTCoefficientParameter.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -11,16 +11,16 @@
 block discarded – undo
11 11
  */
12 12
 class FirstCRTCoefficientParameter extends JWKParameter
13 13
 {
14
-    use Base64UIntValue;
14
+	use Base64UIntValue;
15 15
     
16
-    /**
17
-     * Constructor.
18
-     *
19
-     * @param string $qi First CRT coefficient in base64urlUInt encoding
20
-     */
21
-    public function __construct($qi)
22
-    {
23
-        $this->_validateEncoding($qi);
24
-        parent::__construct(self::PARAM_FIRST_CRT_COEFFICIENT, $qi);
25
-    }
16
+	/**
17
+	 * Constructor.
18
+	 *
19
+	 * @param string $qi First CRT coefficient in base64urlUInt encoding
20
+	 */
21
+	public function __construct($qi)
22
+	{
23
+		$this->_validateEncoding($qi);
24
+		parent::__construct(self::PARAM_FIRST_CRT_COEFFICIENT, $qi);
25
+	}
26 26
 }
Please login to merge, or discard this patch.
lib/JWX/JWK/Parameter/X509CertificateSHA256ThumbprintParameter.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -11,17 +11,17 @@
 block discarded – undo
11 11
  */
12 12
 class X509CertificateSHA256ThumbprintParameter extends JWKParameter
13 13
 {
14
-    use Base64URLValue;
14
+	use Base64URLValue;
15 15
     
16
-    /**
17
-     * Constructor.
18
-     *
19
-     * @param string $thumbprint Base64url encoded SHA-256 hash
20
-     */
21
-    public function __construct($thumbprint)
22
-    {
23
-        $this->_validateEncoding($thumbprint);
24
-        parent::__construct(self::PARAM_X509_CERTIFICATE_SHA256_THUMBPRINT,
25
-            (string) $thumbprint);
26
-    }
16
+	/**
17
+	 * Constructor.
18
+	 *
19
+	 * @param string $thumbprint Base64url encoded SHA-256 hash
20
+	 */
21
+	public function __construct($thumbprint)
22
+	{
23
+		$this->_validateEncoding($thumbprint);
24
+		parent::__construct(self::PARAM_X509_CERTIFICATE_SHA256_THUMBPRINT,
25
+			(string) $thumbprint);
26
+	}
27 27
 }
Please login to merge, or discard this patch.
lib/JWX/JWK/Parameter/X509URLParameter.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@
 block discarded – undo
11 11
  */
12 12
 class X509URLParameter extends JWKParameter
13 13
 {
14
-    use StringParameterValue;
14
+	use StringParameterValue;
15 15
     
16
-    /**
17
-     * Constructor.
18
-     *
19
-     * @param string $uri
20
-     */
21
-    public function __construct($uri)
22
-    {
23
-        parent::__construct(self::PARAM_X509_URL, (string) $uri);
24
-    }
16
+	/**
17
+	 * Constructor.
18
+	 *
19
+	 * @param string $uri
20
+	 */
21
+	public function __construct($uri)
22
+	{
23
+		parent::__construct(self::PARAM_X509_URL, (string) $uri);
24
+	}
25 25
 }
Please login to merge, or discard this patch.
lib/JWX/JWK/Parameter/FirstPrimeFactorParameter.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -11,16 +11,16 @@
 block discarded – undo
11 11
  */
12 12
 class FirstPrimeFactorParameter extends JWKParameter
13 13
 {
14
-    use Base64UIntValue;
14
+	use Base64UIntValue;
15 15
     
16
-    /**
17
-     * Constructor.
18
-     *
19
-     * @param string $p First prime factor in base64urlUInt encoding
20
-     */
21
-    public function __construct($p)
22
-    {
23
-        $this->_validateEncoding($p);
24
-        parent::__construct(self::PARAM_FIRST_PRIME_FACTOR, $p);
25
-    }
16
+	/**
17
+	 * Constructor.
18
+	 *
19
+	 * @param string $p First prime factor in base64urlUInt encoding
20
+	 */
21
+	public function __construct($p)
22
+	{
23
+		$this->_validateEncoding($p);
24
+		parent::__construct(self::PARAM_FIRST_PRIME_FACTOR, $p);
25
+	}
26 26
 }
Please login to merge, or discard this patch.
lib/JWX/JWK/Parameter/XCoordinateParameter.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -11,16 +11,16 @@
 block discarded – undo
11 11
  */
12 12
 class XCoordinateParameter extends CoordinateParameter
13 13
 {
14
-    use Base64URLValue;
14
+	use Base64URLValue;
15 15
     
16
-    /**
17
-     * Constructor.
18
-     *
19
-     * @param string $coord X coordinate in base64url encoding
20
-     */
21
-    public function __construct($coord)
22
-    {
23
-        $this->_validateEncoding($coord);
24
-        parent::__construct(self::PARAM_X_COORDINATE, $coord);
25
-    }
16
+	/**
17
+	 * Constructor.
18
+	 *
19
+	 * @param string $coord X coordinate in base64url encoding
20
+	 */
21
+	public function __construct($coord)
22
+	{
23
+		$this->_validateEncoding($coord);
24
+		parent::__construct(self::PARAM_X_COORDINATE, $coord);
25
+	}
26 26
 }
Please login to merge, or discard this patch.
lib/JWX/JWK/Parameter/AlgorithmParameter.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@
 block discarded – undo
11 11
  */
12 12
 class AlgorithmParameter extends JWKParameter
13 13
 {
14
-    use StringParameterValue;
14
+	use StringParameterValue;
15 15
     
16
-    /**
17
-     * Constructor.
18
-     *
19
-     * @param string $algo Algorithm name
20
-     */
21
-    public function __construct($algo)
22
-    {
23
-        parent::__construct(self::PARAM_ALGORITHM, $algo);
24
-    }
16
+	/**
17
+	 * Constructor.
18
+	 *
19
+	 * @param string $algo Algorithm name
20
+	 */
21
+	public function __construct($algo)
22
+	{
23
+		parent::__construct(self::PARAM_ALGORITHM, $algo);
24
+	}
25 25
 }
Please login to merge, or discard this patch.