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.
Passed
Branch query-batch (6bd0d3)
by Šimon
03:56
created
examples/02-shorthand/rootvalue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
     public function resolve($rootValue, $args, $context)
18 18
     {
19
-        return $rootValue['prefix'].$args['message'];
19
+        return $rootValue['prefix'] . $args['message'];
20 20
     }
21 21
 }
22 22
 
Please login to merge, or discard this patch.
examples/00-hello-world/graphql.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
                 'args' => [
20 20
                     'message' => ['type' => Type::string()],
21 21
                 ],
22
-                'resolve' => function ($rootValue, $args) {
22
+                'resolve' => function($rootValue, $args) {
23 23
                     return $rootValue['prefix'] . $args['message'];
24 24
                 }
25 25
             ],
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                     'x' => ['type' => Type::int()],
36 36
                     'y' => ['type' => Type::int()],
37 37
                 ],
38
-                'resolve' => function ($calc, $args) {
38
+                'resolve' => function($calc, $args) {
39 39
                     return $args['x'] + $args['y'];
40 40
                 },
41 41
             ],
Please login to merge, or discard this patch.
examples/03-server/graphql.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
                 'args' => [
20 20
                     'message' => ['type' => Type::string()],
21 21
                 ],
22
-                'resolve' => function ($rootValue, $args) {
22
+                'resolve' => function($rootValue, $args) {
23 23
                     return $rootValue['prefix'] . $args['message'];
24 24
                 }
25 25
             ],
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                     'x' => ['type' => Type::int()],
36 36
                     'y' => ['type' => Type::int()],
37 37
                 ],
38
-                'resolve' => function ($calc, $args) {
38
+                'resolve' => function($calc, $args) {
39 39
                     return $args['x'] + $args['y'];
40 40
                 },
41 41
             ],
Please login to merge, or discard this patch.
examples/01-blog/Blog/Type/StoryType.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -121,15 +121,15 @@
 block discarded – undo
121 121
         return DataSource::findComments($story->id, $args['limit'], $args['after']);
122 122
     }
123 123
     
124
-    public function resolveMentions(Story $story, $args, AppContext $context){
124
+    public function resolveMentions(Story $story, $args, AppContext $context) {
125 125
         return DataSource::findStoryMentions($story->id);
126 126
     }
127 127
 
128
-    public function resolveLikedBy(Story $story, $args, AppContext $context){
129
-        return DataSource::findLikes($story->id,10);
128
+    public function resolveLikedBy(Story $story, $args, AppContext $context) {
129
+        return DataSource::findLikes($story->id, 10);
130 130
     }
131 131
 
132
-    public function resolveLikes(Story $story, $args, AppContext $context){
133
-        return DataSource::findLikes($story->id,10);
132
+    public function resolveLikes(Story $story, $args, AppContext $context) {
133
+        return DataSource::findLikes($story->id, 10);
134 134
     }
135 135
 }
Please login to merge, or discard this patch.