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 ( ff3a63...584877 )
by Joni
04:52
created
lib/X509/AttributeCertificate/Attribute/IetfAttrValue.php 1 patch
Switch Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -51,11 +51,11 @@  discard block
 block discarded – undo
51 51
     public static function fromASN1(UnspecifiedType $el)
52 52
     {
53 53
         switch ($el->tag()) {
54
-            case Element::TYPE_OCTET_STRING:
55
-            case Element::TYPE_UTF8_STRING:
56
-                return new self($el->asString()->string(), $el->tag());
57
-            case Element::TYPE_OBJECT_IDENTIFIER:
58
-                return new self($el->asObjectIdentifier()->oid(), $el->tag());
54
+        case Element::TYPE_OCTET_STRING:
55
+        case Element::TYPE_UTF8_STRING:
56
+            return new self($el->asString()->string(), $el->tag());
57
+        case Element::TYPE_OBJECT_IDENTIFIER:
58
+            return new self($el->asObjectIdentifier()->oid(), $el->tag());
59 59
         }
60 60
         throw new \UnexpectedValueException(
61 61
             "Type " . Element::tagToName($el->tag()) . " not supported.");
@@ -153,12 +153,12 @@  discard block
 block discarded – undo
153 153
     public function toASN1()
154 154
     {
155 155
         switch ($this->_type) {
156
-            case Element::TYPE_OCTET_STRING:
157
-                return new OctetString($this->_value);
158
-            case Element::TYPE_UTF8_STRING:
159
-                return new UTF8String($this->_value);
160
-            case Element::TYPE_OBJECT_IDENTIFIER:
161
-                return new ObjectIdentifier($this->_value);
156
+        case Element::TYPE_OCTET_STRING:
157
+            return new OctetString($this->_value);
158
+        case Element::TYPE_UTF8_STRING:
159
+            return new UTF8String($this->_value);
160
+        case Element::TYPE_OBJECT_IDENTIFIER:
161
+            return new ObjectIdentifier($this->_value);
162 162
         }
163 163
         throw new \LogicException(
164 164
             "Type " . Element::tagToName($this->_type) . " not supported.");
Please login to merge, or discard this patch.