Add license

This commit is contained in:
Julien Fastré 2023-05-30 21:25:33 +02:00
parent e9fdabf931
commit 40ddd1f1ee
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -1,5 +1,14 @@
<?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\DocStoreBundle\Repository;
use Chill\DocStoreBundle\Entity\PersonDocument;
@ -17,8 +26,7 @@ readonly class PersonDocumentRepository implements ObjectRepository
public function __construct(
private EntityManagerInterface $entityManager
)
{
) {
$this->repository = $this->entityManager->getRepository($this->getClassName());
}