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 Failed
Push — master ( ce4d50...5513c9 )
by Shobi
03:06 queued 01:09
created
src/Commands/Search/QueryCommand.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
             'collection' => $collection,
23 23
             'bucket'     => $bucket,
24 24
             'terms'      => quote($terms),
25
-            'limit'      => $limit ? "LIMIT($limit)": null,
25
+            'limit'      => $limit ? "LIMIT($limit)" : null,
26 26
         ];
27 27
 
28 28
         parent::__construct($this->command, $this->parameters);
Please login to merge, or discard this patch.
src/Search.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
         $response = $this->send(new StartSearchChannelCommand());
33 33
 
34
-        if($bufferSize = $response->get('bufferSize')){
34
+        if ($bufferSize = $response->get('bufferSize')) {
35 35
             $this->bufferSize = (int) $bufferSize;
36 36
         }
37 37
 
@@ -50,13 +50,13 @@  discard block
 block discarded – undo
50 50
     {
51 51
         $response = $this->send(new QueryCommand($collection, $bucket, $terms, $limit));
52 52
 
53
-        if(! $response->getStatus() == 'PENDING') {
53
+        if (!$response->getStatus() == 'PENDING') {
54 54
             throw new CommandFailedException;
55 55
         }
56 56
 
57 57
         $results = $this->read();
58 58
 
59
-        if(! $results->getStatus() == 'EVENT') {
59
+        if (!$results->getStatus() == 'EVENT') {
60 60
             throw new CommandFailedException;
61 61
         }
62 62
 
@@ -71,17 +71,17 @@  discard block
 block discarded – undo
71 71
      * @return array
72 72
      * @throws CommandFailedException
73 73
      */
74
-    public function suggest($collection, $bucket, $terms, $limit=null): array
74
+    public function suggest($collection, $bucket, $terms, $limit = null): array
75 75
     {
76 76
         $response = $this->send(new SuggestCommand($collection, $bucket, $terms, $limit));
77 77
 
78
-        if(! $response->getStatus() == 'PENDING') {
78
+        if (!$response->getStatus() == 'PENDING') {
79 79
             throw new CommandFailedException;
80 80
         }
81 81
 
82 82
         $results = $this->read();
83 83
 
84
-        if(! $results->getStatus() == 'EVENT') {
84
+        if (!$results->getStatus() == 'EVENT') {
85 85
             throw new CommandFailedException;
86 86
         }
87 87
 
Please login to merge, or discard this patch.