vendor/friendsofsymfony/user-bundle/Model/GroupableInterface.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the FOSUserBundle package.
  4.  *
  5.  * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace FOS\UserBundle\Model;
  11. @trigger_error('Using Groups is deprecated since version 2.2 and will be removed in 3.0.'E_USER_DEPRECATED);
  12. /**
  13.  * @author Thibault Duplessis <thibault.duplessis@gmail.com>
  14.  * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  15.  * @author Christophe Coevoet <stof@notk.org>
  16.  *
  17.  * @deprecated
  18.  */
  19. interface GroupableInterface
  20. {
  21.     /**
  22.      * Gets the groups granted to the user.
  23.      *
  24.      * @return \Traversable
  25.      */
  26.     public function getGroups();
  27.     /**
  28.      * Gets the name of the groups which includes the user.
  29.      *
  30.      * @return array
  31.      */
  32.     public function getGroupNames();
  33.     /**
  34.      * Indicates whether the user belongs to the specified group or not.
  35.      *
  36.      * @param string $name Name of the group
  37.      *
  38.      * @return bool
  39.      */
  40.     public function hasGroup($name);
  41.     /**
  42.      * Add a group to the user groups.
  43.      *
  44.      * @return static
  45.      */
  46.     public function addGroup(GroupInterface $group);
  47.     /**
  48.      * Remove a group from the user groups.
  49.      *
  50.      * @return static
  51.      */
  52.     public function removeGroup(GroupInterface $group);
  53. }