mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-20 07:46:25 +00:00
35 lines
815 B
PHP
35 lines
815 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\MainBundle\Repository;
|
|
|
|
use Chill\MainBundle\Entity\Regroupment;
|
|
use Doctrine\ORM\NonUniqueResultException;
|
|
use Doctrine\ORM\NoResultException;
|
|
use Doctrine\Persistence\ObjectRepository;
|
|
|
|
/**
|
|
* @template-extends ObjectRepository<Regroupment>
|
|
*/
|
|
interface RegroupmentRepositoryInterface extends ObjectRepository
|
|
{
|
|
/**
|
|
* @throws NonUniqueResultException
|
|
* @throws NoResultException
|
|
*/
|
|
public function findOneByName(string $name): ?Regroupment;
|
|
|
|
/**
|
|
* @return array<Regroupment>
|
|
*/
|
|
public function findRegroupmentAssociatedToNoCenter(): array;
|
|
}
|