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 — master ( f440b9...538aaa )
by Brent
09:14 queued 05:49
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
                 
32 32
                 throw WrongType::withMessage("Missing field for this struct: {$name}:{$type}");
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
         $type = $this->definition[$offset] ?? null;
55 55
 
56
-        if (! $type) {
56
+        if (!$type) {
57 57
             throw WrongType::withMessage("No type was configured for this field {$offset}");
58 58
         }
59 59
 
Please login to merge, or discard this patch.