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 php72 (880eb0)
by Joni
05:58
created
lib/JWX/JWE/KeyAlgorithm/A128GCMKWAlgorithm.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -15,27 +15,27 @@
 block discarded – undo
15 15
  */
16 16
 class A128GCMKWAlgorithm extends AESGCMKWAlgorithm
17 17
 {
18
-    /**
19
-     * {@inheritdoc}
20
-     */
21
-    public function algorithmParamValue(): string
22
-    {
23
-        return JWA::ALGO_A128GCMKW;
24
-    }
18
+	/**
19
+	 * {@inheritdoc}
20
+	 */
21
+	public function algorithmParamValue(): string
22
+	{
23
+		return JWA::ALGO_A128GCMKW;
24
+	}
25 25
 
26
-    /**
27
-     * {@inheritdoc}
28
-     */
29
-    protected function _getGCMCipher(): Cipher
30
-    {
31
-        return new AES128Cipher();
32
-    }
26
+	/**
27
+	 * {@inheritdoc}
28
+	 */
29
+	protected function _getGCMCipher(): Cipher
30
+	{
31
+		return new AES128Cipher();
32
+	}
33 33
 
34
-    /**
35
-     * {@inheritdoc}
36
-     */
37
-    protected function _keySize(): int
38
-    {
39
-        return 16;
40
-    }
34
+	/**
35
+	 * {@inheritdoc}
36
+	 */
37
+	protected function _keySize(): int
38
+	{
39
+		return 16;
40
+	}
41 41
 }
Please login to merge, or discard this patch.
lib/JWX/JWE/KeyAlgorithm/A256GCMKWAlgorithm.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -15,27 +15,27 @@
 block discarded – undo
15 15
  */
16 16
 class A256GCMKWAlgorithm extends AESGCMKWAlgorithm
17 17
 {
18
-    /**
19
-     * {@inheritdoc}
20
-     */
21
-    public function algorithmParamValue(): string
22
-    {
23
-        return JWA::ALGO_A256GCMKW;
24
-    }
18
+	/**
19
+	 * {@inheritdoc}
20
+	 */
21
+	public function algorithmParamValue(): string
22
+	{
23
+		return JWA::ALGO_A256GCMKW;
24
+	}
25 25
 
26
-    /**
27
-     * {@inheritdoc}
28
-     */
29
-    protected function _getGCMCipher(): Cipher
30
-    {
31
-        return new AES256Cipher();
32
-    }
26
+	/**
27
+	 * {@inheritdoc}
28
+	 */
29
+	protected function _getGCMCipher(): Cipher
30
+	{
31
+		return new AES256Cipher();
32
+	}
33 33
 
34
-    /**
35
-     * {@inheritdoc}
36
-     */
37
-    protected function _keySize(): int
38
-    {
39
-        return 32;
40
-    }
34
+	/**
35
+	 * {@inheritdoc}
36
+	 */
37
+	protected function _keySize(): int
38
+	{
39
+		return 32;
40
+	}
41 41
 }
Please login to merge, or discard this patch.
lib/JWX/JWE/CompressionAlgorithm.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -12,21 +12,21 @@
 block discarded – undo
12 12
  */
13 13
 interface CompressionAlgorithm extends CompressionAlgorithmParameterValue, HeaderParameters
14 14
 {
15
-    /**
16
-     * Compress data.
17
-     *
18
-     * @param string $data Uncompressed data
19
-     *
20
-     * @return string Compressed data
21
-     */
22
-    public function compress(string $data): string;
15
+	/**
16
+	 * Compress data.
17
+	 *
18
+	 * @param string $data Uncompressed data
19
+	 *
20
+	 * @return string Compressed data
21
+	 */
22
+	public function compress(string $data): string;
23 23
 
24
-    /**
25
-     * Decompress data.
26
-     *
27
-     * @param string $data Compressed data
28
-     *
29
-     * @return string Uncompressed data
30
-     */
31
-    public function decompress(string $data): string;
24
+	/**
25
+	 * Decompress data.
26
+	 *
27
+	 * @param string $data Compressed data
28
+	 *
29
+	 * @return string Uncompressed data
30
+	 */
31
+	public function decompress(string $data): string;
32 32
 }
Please login to merge, or discard this patch.