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
Pull Request — master (#18)
by Philip
02:14
created
src/Commands/Ingest/PushCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@
 block discarded – undo
18 18
      * @param string $text
19 19
      * @param string $locale - a Valid ISO 639-3 locale (eng = English), if set to `none` lexing will be disabled
20 20
      */
21
-    public function __construct(string $collection, string $bucket, string $object, string $text, string $locale=null)
21
+    public function __construct(string $collection, string $bucket, string $object, string $text, string $locale = null)
22 22
     {
23 23
         $this->parameters = [
24 24
             'collection' => $collection,
25 25
             'bucket'     => $bucket,
26 26
             'object'     => $object,
27 27
             'text'       => self::wrapInQuotes($text),
28
-            'locale'     => $locale ? "LANG($locale)": null,
28
+            'locale'     => $locale ? "LANG($locale)" : null,
29 29
         ];
30 30
 
31 31
         parent::__construct($this->command, $this->parameters);
Please login to merge, or discard this patch.
src/Commands/Search/QueryCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@
 block discarded – undo
24 24
             'collection' => $collection,
25 25
             'bucket'     => $bucket,
26 26
             'terms'      => self::wrapInQuotes($terms),
27
-            'limit'      => $limit ? "LIMIT($limit)": null,
28
-            'offset'     => $offset ? "OFFSET($offset)": null,
29
-            'locale'     => $locale ? "LANG($locale)": null,
27
+            'limit'      => $limit ? "LIMIT($limit)" : null,
28
+            'offset'     => $offset ? "OFFSET($offset)" : null,
29
+            'locale'     => $locale ? "LANG($locale)" : null,
30 30
         ];
31 31
 
32 32
         parent::__construct($this->command, $this->parameters);
Please login to merge, or discard this patch.