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 ( 2569ae...192447 )
by Joni
08:37
created
lib/X509/Certificate/Extension/SubjectInformationAccessExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     protected static function _fromDER(string $data, bool $critical): self
46 46
     {
47 47
         $access = array_map(
48
-            function (UnspecifiedType $el) {
48
+            function(UnspecifiedType $el) {
49 49
                 return SubjectAccessDescription::fromASN1($el->asSequence());
50 50
             }, UnspecifiedType::fromDER($data)->asSequence()->elements());
51 51
         return new self($critical, ...$access);
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     protected function _valueASN1(): Sequence
70 70
     {
71 71
         $elements = array_map(
72
-            function (AccessDescription $access) {
72
+            function(AccessDescription $access) {
73 73
                 return $access->toASN1();
74 74
             }, $this->_accessDescriptions);
75 75
         return new Sequence(...$elements);
Please login to merge, or discard this patch.
lib/X509/Certificate/Extension/AuthorityInformationAccessExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     protected static function _fromDER(string $data, bool $critical): self
46 46
     {
47 47
         $access = array_map(
48
-            function (UnspecifiedType $el) {
48
+            function(UnspecifiedType $el) {
49 49
                 return AuthorityAccessDescription::fromASN1($el->asSequence());
50 50
             }, UnspecifiedType::fromDER($data)->asSequence()->elements());
51 51
         return new self($critical, ...$access);
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     protected function _valueASN1(): Sequence
70 70
     {
71 71
         $elements = array_map(
72
-            function (AccessDescription $access) {
72
+            function(AccessDescription $access) {
73 73
                 return $access->toASN1();
74 74
             }, $this->_accessDescriptions);
75 75
         return new Sequence(...$elements);
Please login to merge, or discard this patch.