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 ( f7e913...d65fbd )
by Enjoys
12:52
created
src/ValueTypecasting.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,9 +47,9 @@
 block discarded – undo
47 47
 
48 48
     private function determine(): void
49 49
     {
50
-         foreach (self::DEFINABLE_TYPES_MAP as $typeClass) {
51
-             /** @var TypeCastInterface $type */
52
-             $type = new $typeClass($this->originalValue);
50
+            foreach (self::DEFINABLE_TYPES_MAP as $typeClass) {
51
+                /** @var TypeCastInterface $type */
52
+                $type = new $typeClass($this->originalValue);
53 53
             if ($type->isPossible()){
54 54
                 $this->castedValue = $type->getCastedValue();
55 55
                 break;
Please login to merge, or discard this patch.