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 ( 601628...f440b9 )
by Brent
06:44 queued 02:04
created
src/Tuple.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,13 +42,13 @@
 block discarded – undo
42 42
 
43 43
     public function offsetSet($offset, $value)
44 44
     {
45
-        if ($offset === null || ! is_numeric($offset)) {
45
+        if ($offset === null || !is_numeric($offset)) {
46 46
             throw WrongType::withMessage('You must specify a numeric offset');
47 47
         }
48 48
 
49 49
         $type = $this->types[$offset] ?? null;
50 50
 
51
-        if (! $type) {
51
+        if (!$type) {
52 52
             throw WrongType::withMessage("No type was configured for this tuple at offset {$offset}");
53 53
         }
54 54
 
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 (! array_key_exists($name, $data)) {
27
+            if (!array_key_exists($name, $data)) {
28 28
                 throw WrongType::withMessage("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::withMessage("No type was configured for this field {$offset}");
54 54
         }
55 55
 
Please login to merge, or discard this patch.
src/Types/UnionType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
                 continue;
34 34
             }
35 35
 
36
-            if (! $this->sameType($initialValue, $currentValue, $type)) {
36
+            if (!$this->sameType($initialValue, $currentValue, $type)) {
37 37
                 continue;
38 38
             }
39 39
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     private function getAvailableTypesString(): string
78 78
     {
79
-        return implode(', ', array_map(function (Type $type) {
79
+        return implode(', ', array_map(function(Type $type) {
80 80
             return (string) $type;
81 81
         }, $this->types));
82 82
     }
Please login to merge, or discard this patch.
src/Types/GenericType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     public function validate($value)
23 23
     {
24 24
         if (
25
-            ! $value instanceof $this->type
25
+            !$value instanceof $this->type
26 26
         ) {
27 27
             throw WrongType::withMessage("must be of type {$this->type}");
28 28
         }
Please login to merge, or discard this patch.