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
Push — php72 ( 18e574...be7a5a )
by Joni
01:52
created
examples/explicit-decrypt.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 $key = '012345678901234567890123';
17 17
 // read ciphertext, authentication tag and initialization vector from the stdin
18 18
 [$ciphertext, $auth_tag, $iv] = array_map('hex2bin',
19
-    file('php://stdin', FILE_IGNORE_NEW_LINES));
19
+	file('php://stdin', FILE_IGNORE_NEW_LINES));
20 20
 // configure GCM object with AES-192 cipher and 13-bytes long authentication tag
21 21
 $gcm = new GCM(new AES192Cipher(), 13);
22 22
 // decrypt and authenticate
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * php explicit-encrypt.php | php explicit-decrypt.php
6 6
  */
7 7
 
8
-declare(strict_types = 1);
8
+declare(strict_types=1);
9 9
 
10 10
 use Sop\GCM\Cipher\AES\AES192Cipher;
11 11
 use Sop\GCM\GCM;
Please login to merge, or discard this patch.
examples/encrypt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * php encrypt.php
6 6
  */
7 7
 
8
-declare(strict_types = 1);
8
+declare(strict_types=1);
9 9
 
10 10
 use Sop\GCM\AESGCM;
11 11
 
Please login to merge, or discard this patch.
examples/explicit-encrypt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * php explicit-encrypt.php
7 7
  */
8 8
 
9
-declare(strict_types = 1);
9
+declare(strict_types=1);
10 10
 
11 11
 use Sop\GCM\Cipher\AES\AES192Cipher;
12 12
 use Sop\GCM\GCM;
Please login to merge, or discard this patch.
examples/decrypt.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 $key = 'some 128 bit key';
19 19
 // read ciphertext, authentication tag and initialization vector from the stdin
20 20
 [$ciphertext, $auth_tag, $iv] = array_map('hex2bin',
21
-    file('php://stdin', FILE_IGNORE_NEW_LINES));
21
+	file('php://stdin', FILE_IGNORE_NEW_LINES));
22 22
 // decrypt and authenticate
23 23
 $plaintext = AESGCM::decrypt($ciphertext, $auth_tag, $aad, $key, $iv);
24 24
 echo "${plaintext}\n";
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * php encrypt.php | php decrypt.php
6 6
  */
7 7
 
8
-declare(strict_types = 1);
8
+declare(strict_types=1);
9 9
 
10 10
 use Sop\GCM\AESGCM;
11 11
 
Please login to merge, or discard this patch.