<?phpnamespace App\Entity\Profile;use Doctrine\ORM\Mapping as ORM;/** * @see Photo for inheritance mapping config */#[ORM\Entity]class Avatar extends Photo{ #[ORM\JoinColumn(name: 'profile_id', referencedColumnName: 'id')] #[ORM\ManyToOne(targetEntity: Profile::class, inversedBy: 'avatar')] protected Profile $profile; public function getType(): string { return self::TYPE_AVATAR; }}