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.

Issues (2)

src/TimeOut.php (1 issue)

1
<?php
2
3
declare(strict_types=1);
4
5
namespace WyriHaximus\AsyncTestUtilities;
6
7
use Attribute;
8
use WyriHaximus\React\PHPUnit\TimeOutInterface;
9
10
#[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_CLASS)]
11
final readonly class TimeOut implements TimeOutInterface
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_READONLY, expecting T_CLASS on line 11 at column 6
Loading history...
12
{
13
    public function __construct(
14
        public int|float $timeout,
15
    ) {
16
    }
17
18
    public function timeout(): int|float
19
    {
20
        return $this->timeout;
21
    }
22
}
23