X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/89206adbc7af13fc281d31dabcc416d973982428..8a58af7e48b04df76b204d8e66aadfb44c97eec2:/Entity/Location.php?ds=sidebyside diff --git a/Entity/Location.php b/Entity/Location.php index c379b56..613e462 100644 --- a/Entity/Location.php +++ b/Entity/Location.php @@ -429,6 +429,9 @@ class Location { * @return Location */ public function addUser(User $user): Location { + //Add from owning side + $user->addSubscriber($this); + $this->users[] = $user; return $this; @@ -441,6 +444,13 @@ class Location { * @return bool */ public function removeUser(User $user): bool { + if (!$this->users->contains($user)) { + return true; + } + + //Remove from owning side + $user->removeSubscriber($this); + return $this->users->removeElement($user); }