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
Bug
introduced
by
![]() |
|||
10 | { |
||
11 | public function __construct( |
||
12 | public string $id, |
||
13 | public int $integer, |
||
14 | public float $float, |
||
15 | public DateTimeImmutable $dateTimeImmutable, |
||
16 | ) {} |
||
17 | } |
||
18 |