add conferences, debriefings, projects, theme types, establishment groups

This commit is contained in:
Simon Vieille 2022-04-15 16:46:06 +02:00
commit 3730d8d5cc
Signed by: deblan
GPG key ID: 03383D15A1D31745
34 changed files with 2249 additions and 0 deletions

View file

@ -0,0 +1,15 @@
<?php
namespace App\Repository;
use App\Core\Repository\RepositoryQuery;
use Knp\Component\Pager\PaginatorInterface;
use App\Repository\ConferenceRepository as Repository;
class ConferenceRepositoryQuery extends RepositoryQuery
{
public function __construct(Repository $repository, PaginatorInterface $paginator)
{
parent::__construct($repository, 'c', $paginator);
}
}