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
Branch php72 (a7f01e)
by Joni
04:53
created
lib/X509/GeneralName/IPv6Address.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\X509\GeneralName;
6 6
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     protected static function _wordsToIPv6String(array $words): string
44 44
     {
45 45
         $groups = array_map(
46
-            function ($word) {
46
+            function($word) {
47 47
                 return sprintf('%04x', $word);
48 48
             }, $words);
49 49
         return implode(':', $groups);
Please login to merge, or discard this patch.
lib/X509/GeneralName/IPAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\X509\GeneralName;
6 6
 
Please login to merge, or discard this patch.
lib/X509/GeneralName/RegisteredID.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\X509\GeneralName;
6 6
 
Please login to merge, or discard this patch.
lib/X509/GeneralName/GeneralNames.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\X509\GeneralName;
6 6
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                 'GeneralNames must have at least one GeneralName.');
52 52
         }
53 53
         $names = array_map(
54
-            function (UnspecifiedType $el) {
54
+            function(UnspecifiedType $el) {
55 55
                 return GeneralName::fromASN1($el->asTagged());
56 56
             }, $seq->elements());
57 57
         return new self(...$names);
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     public function allOf(int $tag): array
98 98
     {
99 99
         $names = array_filter($this->_names,
100
-            function (GeneralName $name) use ($tag) {
100
+            function(GeneralName $name) use ($tag) {
101 101
                 return $name->tag() === $tag;
102 102
             });
103 103
         return array_values($names);
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                 'GeneralNames must have at least one GeneralName.');
161 161
         }
162 162
         $elements = array_map(
163
-            function (GeneralName $name) {
163
+            function(GeneralName $name) {
164 164
                 return $name->toASN1();
165 165
             }, $this->_names);
166 166
         return new Sequence(...$elements);
Please login to merge, or discard this patch.
lib/X509/GeneralName/OtherName.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\X509\GeneralName;
6 6
 
Please login to merge, or discard this patch.
lib/X509/GeneralName/IPv4Address.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\X509\GeneralName;
6 6
 
Please login to merge, or discard this patch.
lib/X509/GeneralName/UniformResourceIdentifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\X509\GeneralName;
6 6
 
Please login to merge, or discard this patch.
lib/X509/GeneralName/GeneralName.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\X509\GeneralName;
6 6
 
Please login to merge, or discard this patch.
lib/X509/GeneralName/EDIPartyName.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\X509\GeneralName;
6 6
 
Please login to merge, or discard this patch.