]> Raphaël G. Git Repositories - airbundle/commitdiff
Fix dance user add/remove from inverse side
authorRaphaël Gertz <git@rapsys.eu>
Tue, 27 Feb 2024 15:29:45 +0000 (16:29 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Tue, 27 Feb 2024 15:29:45 +0000 (16:29 +0100)
Entity/Dance.php

index 8d83062901439c9a72b02a88da5c5f7da43f1b7b..796b81f20798f80239fca9dee7fee51ced9ce337 100644 (file)
@@ -210,7 +210,7 @@ class Dance {
         */
        public function addUser(User $user): Dance {
                //Add from owning side
-               $user->addSubscriber($this);
+               $user->addDance($this);
 
                $this->users[] = $user;
 
@@ -225,12 +225,12 @@ class Dance {
         * @return bool
         */
        public function removeUser(User $user): bool {
-               if (!$this->users->contains($user)) {
+               if (!$this->dances->contains($user)) {
                        return true;
                }
 
                //Remove from owning side
-               $user->removeSubscriber($this);
+               $user->removeDance($this);
 
                return $this->users->removeElement($user);
        }