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 ( 93b463...37c37a )
by Simon
09:04
created
src/QueuedEventDispatcher/QueuedEventHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types=1);
1
+<?php declare (strict_types = 1);
2 2
 
3 3
 namespace SmoothPhp\LaravelAdapter\QueuedEventDispatcher;
4 4
 
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
         $limit = time() + $timeout;
19 19
         foreach ($commands as $command) {
20
-            while (!Cache::has((string)$command)) {
20
+            while (!Cache::has((string) $command)) {
21 21
                 usleep(1000);
22 22
 
23 23
                 if (time() > $limit) {
@@ -34,6 +34,6 @@  discard block
 block discarded – undo
34 34
      */
35 35
     function uuid()
36 36
     {
37
-        return (string)\Ramsey\Uuid\Uuid::uuid4();
37
+        return (string) \Ramsey\Uuid\Uuid::uuid4();
38 38
     }
39 39
 }
Please login to merge, or discard this patch.
tests/EventDispatcher/Helpers/TestHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare (strict_types=1);
1
+<?php declare (strict_types = 1);
2 2
 
3 3
 namespace Tests\EventDispatcher\Helpers;
4 4
 
@@ -28,6 +28,6 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function getSubscribedEvents()
30 30
     {
31
-        return [TestEvent::class => ['whenTestEvent'],];
31
+        return [TestEvent::class => ['whenTestEvent'], ];
32 32
     }
33 33
 }
Please login to merge, or discard this patch.
tests/EventDispatcher/Helpers/TestEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types=1);
1
+<?php declare (strict_types = 1);
2 2
 
3 3
 namespace Tests\EventDispatcher\Helpers;
4 4
 
Please login to merge, or discard this patch.
tests/EventDispatcher/PushEventThoughDispatcherQueueTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function test_pushing_event_to_queue()
26 26
     {
27 27
         $container = new Container();
28
-       // $container->bind(\Illuminate\Contracts\Container\Container::class, $container);
28
+        // $container->bind(\Illuminate\Contracts\Container\Container::class, $container);
29 29
         $queue = new Queue($container);
30 30
 
31 31
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types=1);
1
+<?php declare (strict_types = 1);
2 2
 
3 3
 namespace Tests\EventDispatcher;
4 4
 
Please login to merge, or discard this patch.
src/QueuedEventDispatcher/QueuedEventDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types=1);
1
+<?php declare (strict_types = 1);
2 2
 
3 3
 namespace SmoothPhp\LaravelAdapter\QueuedEventDispatcher;
4 4
 
Please login to merge, or discard this patch.