mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
24 lines
834 B
PHP
24 lines
834 B
PHP
<?php
|
|
|
|
namespace Chill\PersonBundle\Repository\AccompanyingPeriod;
|
|
|
|
use Chill\PersonBundle\Entity\AccompanyingPeriod\AccompanyingPeriodWork;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Doctrine\ORM\EntityRepository;
|
|
|
|
/**
|
|
* @method AccompanyingPeriodWork|null find($id, $lockMode = null, $lockVersion = null)
|
|
* @method AccompanyingPeriodWork|null findOneBy(array $criteria, array $orderBy = null)
|
|
* @method AccompanyingPeriodWork[] findAll()
|
|
* @method AccompanyingPeriodWork[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
|
*/
|
|
final class AccompanyingPeriodWorkRepository
|
|
{
|
|
private EntityRepository $repository;
|
|
|
|
public function __construct(EntityManagerInterface $entityManager)
|
|
{
|
|
$this->repository = $entityManager->getRepository(AccompanyingPeriodWork::class);
|
|
}
|
|
}
|