vendor/sonata-project/user-bundle/src/Model/GroupManagerInterface.php line 23

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of the Sonata Project package.
  5.  *
  6.  * (c) Thomas Rabaix <[email protected]>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Sonata\UserBundle\Model;
  12. use FOS\UserBundle\Model\GroupInterface;
  13. use FOS\UserBundle\Model\GroupManagerInterface as BaseInterface;
  14. use Sonata\CoreBundle\Model\PageableManagerInterface;
  15. /**
  16.  * @author Hugo Briand <[email protected]>
  17.  */
  18. interface GroupManagerInterface extends BaseInterfacePageableManagerInterface
  19. {
  20.     /**
  21.      * Alias for the repository method.
  22.      *
  23.      * @param int|null $limit
  24.      * @param int|null $offset
  25.      *
  26.      * @return GroupInterface[]
  27.      */
  28.     public function findGroupsBy(array $criteria null, array $orderBy null$limit null$offset null);
  29. }