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
Push — master ( f883ce...6173f2 )
by
unknown
07:34
created
src/Context/ContextStack.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     /**
32 32
      * Store a value into task queueing stack.
33 33
      *
34
-     * @param \Closure|array $handler
34
+     * @param \Closure $handler
35 35
      * @param mixed $value
36 36
      */
37 37
     public function store($handler, $value = [])
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use TaskQueue\TaskQueue;
6 6
 use TaskQueue\Invoker\FunctionInvoker;
7 7
 use TaskQueue\Invoker\MethodInvoker;
8
-use DependencyInjection\Container;
9 8
 
10 9
 /**
11 10
  * @author Paulus Gandung Prakosa <[email protected]>
Please login to merge, or discard this patch.
src/FulfilledPromise.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $q = new Promise();
33 33
         $value = $this->value;
34 34
 
35
-        Context\ContextStack::create()->store(static function () use ($q, $value, $onFulfilled) {
35
+        Context\ContextStack::create()->store(static function() use ($q, $value, $onFulfilled) {
36 36
             if ($q->currentState() === self::STATE_PENDING) {
37 37
                 try {
38 38
                     $q->resolve($onFulfilled($value));
Please login to merge, or discard this patch.
src/Promise.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
             $index = $this->state === self::STATE_FULFILLED ? 1 : 2;
246 246
 
247 247
             Context\ContextStack::create()->store(
248
-            static function () use ($index, $context, $value) {
248
+            static function() use ($index, $context, $value) {
249 249
                 foreach ($context as $c) {
250 250
                     self::invokeContext($c, $index, $value);
251 251
                 }
@@ -256,12 +256,12 @@  discard block
 block discarded – undo
256 256
             $value->context = array_merge($value->context, $context);
257 257
         } else {
258 258
             $value->then(
259
-            static function ($value) use ($context) {
259
+            static function($value) use ($context) {
260 260
                 foreach ($context as $c) {
261 261
                     self::invokeContext($c, 1, $value);
262 262
                 }
263 263
             },
264
-            static function ($reason) use ($context) {
264
+            static function($reason) use ($context) {
265 265
                 foreach ($context as $c) {
266 266
                     self::invokeContext($c, 2, $reason);
267 267
                 }
Please login to merge, or discard this patch.
src/RejectedPromise.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $q = new Promise();
30 30
         $reason = $this->reason;
31 31
 
32
-        Context\ContextStack::create()->store(static function () use ($q, $reason, $onRejected) {
32
+        Context\ContextStack::create()->store(static function() use ($q, $reason, $onRejected) {
33 33
             if ($q->currentState() === self::STATE_PENDING) {
34 34
                 try {
35 35
                     $q->resolve($onRejected($reason));
Please login to merge, or discard this patch.