mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 08:14:24 +00:00
18 lines
418 B
PHP
18 lines
418 B
PHP
<?php
|
|
|
|
namespace Chill\PersonBundle\Repository;
|
|
|
|
use Chill\PersonBundle\Entity\PersonAltName;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Doctrine\ORM\EntityRepository;
|
|
|
|
final class PersonAltNameRepository
|
|
{
|
|
private EntityRepository $repository;
|
|
|
|
public function __construct(EntityManagerInterface $entityManager)
|
|
{
|
|
$this->repository = $entityManager->getRepository(PersonAltName::class);
|
|
}
|
|
}
|