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 — php72 ( 84962a...e2a8e9 )
by Joni
02:36
created
lib/X509/AttributeCertificate/Attribute/IetfAttrValue.php 1 patch
Switch Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
     public static function fromASN1(UnspecifiedType $el): self
64 64
     {
65 65
         switch ($el->tag()) {
66
-            case Element::TYPE_OCTET_STRING:
67
-            case Element::TYPE_UTF8_STRING:
68
-                return new self($el->asString()->string(), $el->tag());
69
-            case Element::TYPE_OBJECT_IDENTIFIER:
70
-                return new self($el->asObjectIdentifier()->oid(), $el->tag());
66
+        case Element::TYPE_OCTET_STRING:
67
+        case Element::TYPE_UTF8_STRING:
68
+            return new self($el->asString()->string(), $el->tag());
69
+        case Element::TYPE_OBJECT_IDENTIFIER:
70
+            return new self($el->asObjectIdentifier()->oid(), $el->tag());
71 71
         }
72 72
         throw new \UnexpectedValueException(
73 73
             'Type ' . Element::tagToName($el->tag()) . ' not supported.');
@@ -169,12 +169,12 @@  discard block
 block discarded – undo
169 169
     public function toASN1(): Element
170 170
     {
171 171
         switch ($this->_type) {
172
-            case Element::TYPE_OCTET_STRING:
173
-                return new OctetString($this->_value);
174
-            case Element::TYPE_UTF8_STRING:
175
-                return new UTF8String($this->_value);
176
-            case Element::TYPE_OBJECT_IDENTIFIER:
177
-                return new ObjectIdentifier($this->_value);
172
+        case Element::TYPE_OCTET_STRING:
173
+            return new OctetString($this->_value);
174
+        case Element::TYPE_UTF8_STRING:
175
+            return new UTF8String($this->_value);
176
+        case Element::TYPE_OBJECT_IDENTIFIER:
177
+            return new ObjectIdentifier($this->_value);
178 178
         }
179 179
         throw new \LogicException(
180 180
             'Type ' . Element::tagToName($this->_type) . ' not supported.');
Please login to merge, or discard this patch.