getTitle() ; } public function __construct() { $this->users = new ArrayCollection(); } public function getMerchant(): ?Hub { return $this->merchant; } public function setMerchant(?Hub $merchant): self { $this->merchant = $merchant; return $this; } /** * @return Collection|User[] */ public function getUsers(): Collection { return $this->users; } public function addUser(User $user): self { if (!$this->users->contains($user)) { $this->users[] = $user; $user->addNewsletter($this); } return $this; } public function removeUser(User $user): self { if ($this->users->contains($user)) { $this->users->removeElement($user); $user->removeNewsletter($this); } return $this; } }