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.
Test Setup Failed
Push — master ( e039e4...016889 )
by Gabriel
04:43
created
src/Collections/Traits/ArrayAccessTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function offsetSet($offset, $value)
40 40
     {
41
-        if ( ! isset($offset)) {
41
+        if (!isset($offset)) {
42 42
             $this->add($value);
43 43
             return;
44 44
         }
Please login to merge, or discard this patch.
src/Collections/Traits/TransformMethodsTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     public function toArray()
19 19
     {
20
-        return array_map(function ($value) {
20
+        return array_map(function($value) {
21 21
             return $value instanceof AbstractCollection ? $value->toArray() : $value;
22 22
         }, $this->items);
23 23
     }
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      */
32 32
     function jsonSerialize()
33 33
     {
34
-        return array_map(function ($value) {
34
+        return array_map(function($value) {
35 35
             if ($value instanceof JsonSerializable) {
36 36
                 return $value->jsonSerialize();
37 37
             } else {
Please login to merge, or discard this patch.