コード例 #1
0
ファイル: Customer.php プロジェクト: ReissClothing/Sylius
 /**
  * {@inheritdoc}
  */
 public function removeGroup(GroupInterface $group)
 {
     if ($this->groups->contains($group)) {
         $this->groups->removeElement($group);
     }
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 public function removeGroup(GroupInterface $group)
 {
     $this->groups->removeElement($group);
     return $this;
 }