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 ( 773249...ba49ed )
by Cees-Jan
11s
created
src/functions_include.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 // @codeCoverageIgnoreStart
6 6
 if (!\function_exists('ApiClients\Tools\Rx\unwrapObservableFromPromise')) {
7
-    require __DIR__ . '/functions.php';
7
+    require __DIR__.'/functions.php';
8 8
 }
9 9
 // @codeCoverageIgnoreEnd
Please login to merge, or discard this patch.
src/functions.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
 function setAsyncScheduler(LoopInterface $loop): void
39 39
 {
40 40
     try {
41
-        Scheduler::setAsyncFactory(function () use ($loop) {
41
+        Scheduler::setAsyncFactory(function() use ($loop) {
42 42
             return new Scheduler\EventLoopScheduler($loop);
43 43
         });
44 44
     } catch (Exception $e) {
Please login to merge, or discard this patch.