dateFrom = new \DateTimeImmutable('2025-06-01'); $travel->dateTo = new \DateTimeImmutable('2025-06-08'); $bookingDto = new BookingDto($travel, 1); $this->assertInstanceOf(BookingDto::class, $bookingDto); $this->assertSame($travel, $bookingDto->travel); $this->assertSame(BookingDto::MODE_CREATE, $bookingDto->getMode()); } }