Issues (5)

tests/TestDoubles/TestDto.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Gember\SerializerSymfony\Test\TestDoubles;
6
7
use DateTimeImmutable;
8
9
final readonly class TestDto
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_READONLY, expecting T_CLASS on line 9 at column 6
Loading history...
10
{
11
    public function __construct(
12
        public string $id,
13
        public int $integer,
14
        public float $float,
15
        public DateTimeImmutable $dateTimeImmutable,
16
    ) {}
17
}
18