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/Certificate/Extension/NameConstraints/GeneralSubtrees.php 1 patch
Spacing   +3 added lines, -3 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\Certificate\Extension\NameConstraints;
6 6
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     public static function fromASN1(Sequence $seq): self
43 43
     {
44 44
         $subtrees = array_map(
45
-            function (UnspecifiedType $el) {
45
+            function(UnspecifiedType $el) {
46 46
                 return GeneralSubtree::fromASN1($el->asSequence());
47 47
             }, $seq->elements());
48 48
         if (!count($subtrees)) {
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             throw new \LogicException('No subtrees.');
74 74
         }
75 75
         $elements = array_map(
76
-            function (GeneralSubtree $gs) {
76
+            function(GeneralSubtree $gs) {
77 77
                 return $gs->toASN1();
78 78
             }, $this->_subtrees);
79 79
         return new Sequence(...$elements);
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/UnknownExtension.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\Certificate\Extension;
6 6
 
Please login to merge, or discard this patch.
X509/Certificate/Extension/AccessDescription/AuthorityAccessDescription.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\Certificate\Extension\AccessDescription;
6 6
 
Please login to merge, or discard this patch.
X509/Certificate/Extension/AccessDescription/SubjectAccessDescription.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\Certificate\Extension\AccessDescription;
6 6
 
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/AccessDescription/AccessDescription.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\Certificate\Extension\AccessDescription;
6 6
 
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/FreshestCRLExtension.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\Certificate\Extension;
6 6
 
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/CertificatePoliciesExtension.php 1 patch
Spacing   +3 added lines, -3 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\Certificate\Extension;
6 6
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     protected static function _fromDER(string $data, bool $critical): Extension
123 123
     {
124 124
         $policies = array_map(
125
-            function (UnspecifiedType $el) {
125
+            function(UnspecifiedType $el) {
126 126
                 return PolicyInformation::fromASN1($el->asSequence());
127 127
             }, UnspecifiedType::fromDER($data)->asSequence()->elements());
128 128
         if (!count($policies)) {
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
             throw new \LogicException('No policies.');
142 142
         }
143 143
         $elements = array_map(
144
-            function (PolicyInformation $pi) {
144
+            function(PolicyInformation $pi) {
145 145
                 return $pi->toASN1();
146 146
             }, array_values($this->_policies));
147 147
         return new Sequence(...$elements);
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/PolicyConstraintsExtension.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\Certificate\Extension;
6 6
 
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/AuthorityKeyIdentifierExtension.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\Certificate\Extension;
6 6
 
Please login to merge, or discard this patch.