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.
Passed
Push — master ( 662af5...44febf )
by Joni
02:17
created
lib/ASN1/Type/Primitive/Integer.php 1 patch
Switch Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -71,11 +71,11 @@
 block discarded – undo
71 71
         $num = $this->_number->gmpObj();
72 72
         switch (gmp_sign($num)) {
73 73
             // positive
74
-            case 1:
75
-                return self::_encodePositiveInteger($num);
76
-            // negative
77
-            case -1:
78
-                return self::_encodeNegativeInteger($num);
74
+        case 1:
75
+            return self::_encodePositiveInteger($num);
76
+        // negative
77
+        case -1:
78
+            return self::_encodeNegativeInteger($num);
79 79
         }
80 80
         // zero
81 81
         return "\0";
Please login to merge, or discard this patch.
lib/ASN1/Element.php 1 patch
Switch Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -407,20 +407,20 @@  discard block
 block discarded – undo
407 407
     protected static function _determineImplClass(Identifier $identifier): string
408 408
     {
409 409
         switch ($identifier->typeClass()) {
410
-            case Identifier::CLASS_UNIVERSAL:
411
-                $cls = self::_determineUniversalImplClass($identifier->intTag());
412
-                // constructed strings may be present in BER
413
-                if ($identifier->isConstructed() &&
414
-                    is_subclass_of($cls, StringType::class)) {
415
-                    $cls = ConstructedString::class;
416
-                }
417
-                return $cls;
418
-            case Identifier::CLASS_CONTEXT_SPECIFIC:
419
-                return ContextSpecificType::class;
420
-            case Identifier::CLASS_APPLICATION:
421
-                return ApplicationType::class;
422
-            case Identifier::CLASS_PRIVATE:
423
-                return PrivateType::class;
410
+        case Identifier::CLASS_UNIVERSAL:
411
+            $cls = self::_determineUniversalImplClass($identifier->intTag());
412
+            // constructed strings may be present in BER
413
+            if ($identifier->isConstructed() &&
414
+                is_subclass_of($cls, StringType::class)) {
415
+                $cls = ConstructedString::class;
416
+            }
417
+            return $cls;
418
+        case Identifier::CLASS_CONTEXT_SPECIFIC:
419
+            return ContextSpecificType::class;
420
+        case Identifier::CLASS_APPLICATION:
421
+            return ApplicationType::class;
422
+        case Identifier::CLASS_PRIVATE:
423
+            return PrivateType::class;
424 424
         }
425 425
         throw new \UnexpectedValueException(
426 426
             sprintf('%s %d not implemented.',
@@ -493,12 +493,12 @@  discard block
 block discarded – undo
493 493
     private function _isPseudoType(int $tag): bool
494 494
     {
495 495
         switch ($tag) {
496
-            case self::TYPE_STRING:
497
-                return $this instanceof StringType;
498
-            case self::TYPE_TIME:
499
-                return $this instanceof TimeType;
500
-            case self::TYPE_CONSTRUCTED_STRING:
501
-                return $this instanceof ConstructedString;
496
+        case self::TYPE_STRING:
497
+            return $this instanceof StringType;
498
+        case self::TYPE_TIME:
499
+            return $this instanceof TimeType;
500
+        case self::TYPE_CONSTRUCTED_STRING:
501
+            return $this instanceof ConstructedString;
502 502
         }
503 503
         return false;
504 504
     }
Please login to merge, or discard this patch.