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 ( f170cf...eca107 )
by Freek
10:46 queued 08:49
created
src/Types/GenericType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     public function __invoke($value)
18 18
     {
19 19
         if (
20
-            ! $value instanceof $this->type
20
+            !$value instanceof $this->type
21 21
         ) {
22 22
             throw WrongType::fromMessage("must be of type {$this->type}");
23 23
         }
Please login to merge, or discard this patch.
src/Tuple.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,13 +43,13 @@
 block discarded – undo
43 43
 
44 44
     public function offsetSet($offset, $value)
45 45
     {
46
-        if ($offset === null || ! is_numeric($offset)) {
46
+        if ($offset === null || !is_numeric($offset)) {
47 47
             throw WrongType::fromMessage('You must specify a numeric offset');
48 48
         }
49 49
 
50 50
         $type = $this->types[$offset] ?? null;
51 51
 
52
-        if (! $type) {
52
+        if (!$type) {
53 53
             throw WrongType::fromMessage("No type was configured for this tuple at offset {$offset}");
54 54
         }
55 55
 
Please login to merge, or discard this patch.
src/Struct.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     public function set(array $data): self
25 25
     {
26 26
         foreach ($this->definition as $name => $type) {
27
-            if (! isset($data[$name])) {
27
+            if (!isset($data[$name])) {
28 28
                 throw WrongType::fromMessage("Missing field for this struct: {$name}:{$type}");
29 29
             }
30 30
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
         $type = $this->definition[$offset] ?? null;
51 51
 
52
-        if (! $type) {
52
+        if (!$type) {
53 53
             throw WrongType::fromMessage("No type was configured for this field {$offset}");
54 54
         }
55 55
 
Please login to merge, or discard this patch.
src/ValidatesType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
             $type = new $type();
26 26
         }
27 27
 
28
-        if (! is_callable($type)) {
28
+        if (!is_callable($type)) {
29 29
             throw WrongType::fromMessage('Generic types must be callable');
30 30
         }
31 31
 
Please login to merge, or discard this patch.