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
Pull Request — master (#25)
by lee
01:50
created
src/Struct.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     public function set(array $data): self
27 27
     {
28 28
         foreach ($this->definition as $name => $type) {
29
-            if (! array_key_exists($name, $data)) {
29
+            if (!array_key_exists($name, $data)) {
30 30
                 $type = serialize($type);
31 31
                 throw WrongType::withMessage("Missing field for this struct: {$name}:{$type}");
32 32
             }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
         $type = $this->definition[$offset] ?? null;
54 54
 
55
-        if (! $type) {
55
+        if (!$type) {
56 56
             throw WrongType::withMessage("No type was configured for this field {$offset}");
57 57
         }
58 58
 
Please login to merge, or discard this patch.