Files
chill-bundles/src/Bundle/ChillPersonBundle/Repository/AccompanyingPeriod/ResourceRepository.php
2021-04-26 17:18:38 +02:00

33 lines
976 B
PHP

<?php
/**
* 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.
*
* @see https://www.champs-libres.coop/
*/
declare(strict_types=1);
namespace Chill\PersonBundle\Repository\AccompanyingPeriod;
use Chill\PersonBundle\Entity\AccompanyingPeriod\Resource;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @method resource|null find($id, $lockMode = null, $lockVersion = null)
* @method resource|null findOneBy(array $criteria, array $orderBy = null)
* @method resource[] findAll()
* @method resource[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class ResourceRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Resource::class);
}
}