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 ( 268691...af2c93 )
by Cees-Jan
02:34 queued 13s
created
src/TimeOut.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,15 +7,15 @@
 block discarded – undo
7 7
 use Attribute;
8 8
 use WyriHaximus\React\PHPUnit\TimeOutInterface;
9 9
 
10
-#[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_CLASS)]
10
+#[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_CLASS) ]
11 11
 final readonly class TimeOut implements TimeOutInterface
12 12
 {
13 13
     public function __construct(
14
-        public int|float $timeout,
14
+        public int | float $timeout,
15 15
     ) {
16 16
     }
17 17
 
18
-    public function timeout(): int|float
18
+    public function timeout(): int | float
19 19
     {
20 20
         return $this->timeout;
21 21
     }
Please login to merge, or discard this patch.
src/AsyncTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 {
13 13
     use RunTestsInFibersTrait;
14 14
 
15
-    private const INVOKE_ARRAY = ['__invoke'];
15
+    private const INVOKE_ARRAY = [ '__invoke' ];
16 16
 
17 17
     /** @deprecated With the move to fibers there is no need for these rarely used methods anymore. (Unless proven otherwise of course.) */
18 18
     final protected function expectCallableExactly(int $amount): callable
Please login to merge, or discard this patch.
etc/qa/composer-unused.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use ComposerUnused\ComposerUnused\Configuration\Configuration;
6 6
 use ComposerUnused\ComposerUnused\Configuration\NamedFilter;
7 7
 
8
-return static function (Configuration $config): Configuration {
8
+return static function(Configuration $config): Configuration {
9 9
     return $config
10 10
         ->addNamedFilter(NamedFilter::fromString('wyrihaximus/phpstan-react'));
11 11
 };
Please login to merge, or discard this patch.