src/Entity/Entreprise.php line 10
<?phpnamespace App\Entity;use App\Repository\EntrepriseRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: EntrepriseRepository::class)]class Entreprise{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $title = null;#[ORM\Column(length: 255)]private ?string $slug = null;#[ORM\Column(length: 255)]private ?string $logo = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $intro = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $content = null;#[ORM\Column(length: 255, nullable: true)]private ?string $video = null;#[ORM\Column(length: 255, nullable: true)]private ?string $contact = null;#[ORM\Column(length: 255, nullable: true)]private ?string $lieu = null;#[ORM\Column(length: 255, nullable: true)]private ?string $siteweb = null;#[ORM\Column(length: 255, nullable: true)]private ?string $facebook = null;#[ORM\Column]private ?bool $isEnabled = true;#[ORM\Column]private ?int $sortOrder = 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 getSlug(): ?string{return $this->slug;}public function setSlug(string $slug): self{$this->slug = $slug;return $this;}public function getLogo(): ?string{return $this->logo;}public function setLogo(string $logo): self{$this->logo = $logo;return $this;}public function getIntro(): ?string{return $this->intro;}public function setIntro(?string $intro): self{$this->intro = $intro;return $this;}public function getContent(): ?string{return $this->content;}public function setContent(?string $content): self{$this->content = $content;return $this;}public function getVideo(): ?string{return $this->video;}public function setVideo(?string $video): self{$this->video = $video;return $this;}public function getContact(): ?string{return $this->contact;}public function setContact(?string $contact): self{$this->contact = $contact;return $this;}public function getLieu(): ?string{return $this->lieu;}public function setLieu(?string $lieu): self{$this->lieu = $lieu;return $this;}public function getSiteweb(): ?string{return $this->siteweb;}public function setSiteweb(?string $siteweb): self{$this->siteweb = $siteweb;return $this;}public function getFacebook(): ?string{return $this->facebook;}public function setFacebook(?string $facebook): self{$this->facebook = $facebook;return $this;}public function isIsEnabled(): ?bool{return $this->isEnabled;}public function setIsEnabled(bool $isEnabled): self{$this->isEnabled = $isEnabled;return $this;}public function getSortOrder(): ?int{return $this->sortOrder;}public function setSortOrder(int $sortOrder): self{$this->sortOrder = $sortOrder;return $this;}}