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 — php72 ( f5fc00...61c5d1 )
by Joni
02:05
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   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -401,20 +401,20 @@  discard block
 block discarded – undo
401 401
     protected static function _determineImplClass(Identifier $identifier): string
402 402
     {
403 403
         switch ($identifier->typeClass()) {
404
-            case Identifier::CLASS_UNIVERSAL:
405
-                $cls = self::_determineUniversalImplClass($identifier->intTag());
406
-                // constructed strings may be present in BER
407
-                if ($identifier->isConstructed() &&
408
-                    is_subclass_of($cls, PrimitiveString::class)) {
409
-                    $cls = ConstructedString::class;
410
-                }
411
-                return $cls;
412
-            case Identifier::CLASS_CONTEXT_SPECIFIC:
413
-                return ContextSpecificType::class;
414
-            case Identifier::CLASS_APPLICATION:
415
-                return ApplicationType::class;
416
-            case Identifier::CLASS_PRIVATE:
417
-                return PrivateType::class;
404
+        case Identifier::CLASS_UNIVERSAL:
405
+            $cls = self::_determineUniversalImplClass($identifier->intTag());
406
+            // constructed strings may be present in BER
407
+            if ($identifier->isConstructed() &&
408
+                is_subclass_of($cls, PrimitiveString::class)) {
409
+                $cls = ConstructedString::class;
410
+            }
411
+            return $cls;
412
+        case Identifier::CLASS_CONTEXT_SPECIFIC:
413
+            return ContextSpecificType::class;
414
+        case Identifier::CLASS_APPLICATION:
415
+            return ApplicationType::class;
416
+        case Identifier::CLASS_PRIVATE:
417
+            return PrivateType::class;
418 418
         }
419 419
         throw new \UnexpectedValueException(
420 420
             sprintf('%s %d not implemented.',
@@ -487,10 +487,10 @@  discard block
 block discarded – undo
487 487
     private function _isPseudoType(int $tag): bool
488 488
     {
489 489
         switch ($tag) {
490
-            case self::TYPE_STRING:
491
-                return $this instanceof StringType;
492
-            case self::TYPE_TIME:
493
-                return $this instanceof TimeType;
490
+        case self::TYPE_STRING:
491
+            return $this instanceof StringType;
492
+        case self::TYPE_TIME:
493
+            return $this instanceof TimeType;
494 494
         }
495 495
         return false;
496 496
     }
Please login to merge, or discard this patch.