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 — indefinite ( 96169e...95c197 )
by Joni
02:06
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/Type/Primitive/Real.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@
 block discarded – undo
274 274
     /**
275 275
      * Test that number is valid for this context.
276 276
      *
277
-     * @param mixed $num
277
+     * @param string $num
278 278
      * @return bool
279 279
      */
280 280
     private static function _validateNumber($num): bool
Please login to merge, or discard this patch.
lib/ASN1/Element.php 1 patch
Switch Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -347,10 +347,10 @@  discard block
 block discarded – undo
347 347
     private function _isPseudoType(int $tag): bool
348 348
     {
349 349
         switch ($tag) {
350
-            case self::TYPE_STRING:
351
-                return $this instanceof StringType;
352
-            case self::TYPE_TIME:
353
-                return $this instanceof TimeType;
350
+        case self::TYPE_STRING:
351
+            return $this instanceof StringType;
352
+        case self::TYPE_TIME:
353
+            return $this instanceof TimeType;
354 354
         }
355 355
         return false;
356 356
     }
@@ -437,14 +437,14 @@  discard block
 block discarded – undo
437 437
     protected static function _determineImplClass(Identifier $identifier): string
438 438
     {
439 439
         switch ($identifier->typeClass()) {
440
-            case Identifier::CLASS_UNIVERSAL:
441
-                return self::_determineUniversalImplClass($identifier->intTag());
442
-            case Identifier::CLASS_CONTEXT_SPECIFIC:
443
-                return ContextSpecificType::class;
444
-            case Identifier::CLASS_APPLICATION:
445
-                return ApplicationType::class;
446
-            case Identifier::CLASS_PRIVATE:
447
-                return PrivateType::class;
440
+        case Identifier::CLASS_UNIVERSAL:
441
+            return self::_determineUniversalImplClass($identifier->intTag());
442
+        case Identifier::CLASS_CONTEXT_SPECIFIC:
443
+            return ContextSpecificType::class;
444
+        case Identifier::CLASS_APPLICATION:
445
+            return ApplicationType::class;
446
+        case Identifier::CLASS_PRIVATE:
447
+            return PrivateType::class;
448 448
         }
449 449
         throw new \UnexpectedValueException(
450 450
             sprintf("%s %d not implemented.",
Please login to merge, or discard this patch.