FOS\UserBundle\Entity\GroupManager::deleteGroup PHP Method

deleteGroup() public method

{@inheritDoc}
public deleteGroup ( FOS\UserBundle\Model\GroupInterface $group )
$group FOS\UserBundle\Model\GroupInterface
    public function deleteGroup(GroupInterface $group)
    {
        $this->em->remove($group);
        $this->em->flush();
    }