<?phpnamespace App\Domain\Entity\View;use App\Domain\Entity\Person;use App\Domain\Entity\PointOfInterest;use DateTime;class PointOfInterestPicturesView{ /** * @param int $id * @param DateTime $createdAt * @param PointOfInterest $pointOfInterest * @param Person $author * @param string|null $type */ public function __construct( public int $id, public DateTime $createdAt, public PointOfInterest $pointOfInterest, public Person $author, public string | null $type, ) {}}