init of Murph
This commit is contained in:
commit
b92ad093f6
221 changed files with 17653 additions and 0 deletions
19
core/Repository/Site/MenuRepositoryQuery.php
Normal file
19
core/Repository/Site/MenuRepositoryQuery.php
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace App\Core\Repository\Site;
|
||||
|
||||
use App\Core\Repository\RepositoryQuery;
|
||||
use Knp\Component\Pager\PaginatorInterface;
|
||||
|
||||
/**
|
||||
* class MenuRepositoryQuery.
|
||||
*
|
||||
* @author Simon Vieille <simon@deblan.fr>
|
||||
*/
|
||||
class MenuRepositoryQuery extends RepositoryQuery
|
||||
{
|
||||
public function __construct(MenuRepository $repository, PaginatorInterface $paginator)
|
||||
{
|
||||
parent::__construct($repository, 'm', $paginator);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue