<?phpdeclare(strict_types=1);namespace App\Domain\Entity;use ApiPlatform\Metadata\ApiProperty;use Gedmo\Timestampable\Traits\Timestampable;class AdLog{ use Timestampable; #[ApiProperty(identifier: true)] public ?int $id = null; public function __construct( public string $ip, public string $userAgent, public ?Person $person = null, public ?WebAd $webAd = null, public ?MobileAd $mobileAd = null, ) { }}