src/Entity/Prescripteur.php line 9
<?phpnamespace App\Entity;use App\Repository\PrescripteurRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: PrescripteurRepository::class)]class Prescripteur{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $title = null;#[ORM\Column(length: 255)]private ?string $logo = null;#[ORM\Column(length: 255, nullable: true)]private ?string $link = null;public function getId(): ?int{return $this->id;}public function getTitle(): ?string{return $this->title;}public function setTitle(string $title): self{$this->title = $title;return $this;}public function getLogo(): ?string{return $this->logo;}public function setLogo(string $logo): self{$this->logo = $logo;return $this;}public function getLink(): ?string{return $this->link;}public function setLink(?string $link): self{$this->link = $link;return $this;}}