From: Raphaƫl Gertz <git@rapsys.eu>
Date: Wed, 21 Feb 2024 11:15:08 +0000 (+0100)
Subject: Act on owning side
X-Git-Tag: 0.3.0~82
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/c812e773a8195a42a718ce2de0a4e9bca65382aa

Act on owning side
---

diff --git a/Entity/Dance.php b/Entity/Dance.php
index dccee33..59896cd 100644
--- a/Entity/Dance.php
+++ b/Entity/Dance.php
@@ -209,6 +209,9 @@ class Dance {
 	 * @return Dance
 	 */
 	public function addUser(User $user): Dance {
+		//Add from owning side
+		$user->addSubscriber($this);
+
 		$this->users[] = $user;
 
 		return $this;
@@ -222,6 +225,9 @@ class Dance {
 	 * @return bool
 	 */
 	public function removeUser(User $user): bool {
+		//Remove from owning side
+		$user->removeSubscriber($this);
+
 		return $this->users->removeElement($user);
 	}
 
diff --git a/Entity/Location.php b/Entity/Location.php
index c379b56..984e8d8 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,9 @@ class Location {
 	 * @return bool
 	 */
 	public function removeUser(User $user): bool {
+		//Remove from owning side
+		$user->removeSubscriber($this);
+
 		return $this->users->removeElement($user);
 	}