src/Entity/Boutiques.php line 12
<?phpnamespace App\Entity;use App\Entity\Trait\CodeTrait;use App\Repository\BoutiquesRepository;use Doctrine\Common\Collections\ArrayCollection;use Doctrine\Common\Collections\Collection;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: BoutiquesRepository::class)]class Boutiques{use CodeTrait;#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column()]private ?int $id = null;#[ORM\Column(length: 255, nullable: true)]private ?string $nom = null;#[ORM\Column(length: 100)]private ?string $ville = null;#[ORM\Column(length: 255, nullable: true)]private ?string $adresse = null;#[ORM\Column(length: 15, nullable: true)]private ?string $telephone = null;#[ORM\Column(length: 255, nullable: true)]private ?string $logo = null;#[ORM\Column(length: 255, nullable: true)]private ?string $siteweb = null;#[ORM\OneToMany(mappedBy: 'shop', targetEntity: User::class)]private Collection $users;public function __construct(){$this->users = new ArrayCollection();}public function getId(): ?int{return $this->id;}public function getNom(): ?string{return $this->nom;}public function setNom(?string $nom): self{$this->nom = $nom;return $this;}public function getVille(): ?string{return $this->ville;}public function setVille(string $ville): self{$this->ville = $ville;return $this;}public function setCode(string $code): self{$this->code = $code;return $this;}public function getAdresse(): ?string{return $this->adresse;}public function setAdresse(?string $adresse): self{$this->adresse = $adresse;return $this;}public function getTelephone(): ?string{return $this->telephone;}public function setTelephone(?string $telephone): self{$this->telephone = $telephone;return $this;}public function getLogo(): ?string{return $this->logo;}public function setLogo(?string $logo): self{$this->logo = $logo;return $this;}public function getSiteweb(): ?string{return $this->siteweb;}public function setSiteweb(?string $siteweb): self{$this->siteweb = $siteweb;return $this;}/*** @return Collection<int, User>*/public function getUsers(): Collection{return $this->users;}public function addUser(User $user): self{if (!$this->users->contains($user)) {$this->users[] = $user;$user->setShop($this);}return $this;}public function removeUser(User $user): self{if ($this->users->removeElement($user)) {// set the owning side to null (unless already changed)if ($user->getShop() === $this) {$user->setShop(null);}}return $this;}}