add navigation setting
This commit is contained in:
parent
9b5cee2e03
commit
92887b029e
15 changed files with 592 additions and 33 deletions
18
core/Repository/NavigationSettingRepositoryQuery.php
Normal file
18
core/Repository/NavigationSettingRepositoryQuery.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace App\Core\Repository;
|
||||
|
||||
use Knp\Component\Pager\PaginatorInterface;
|
||||
|
||||
/**
|
||||
* class NavigationSettingRepositoryQuery.
|
||||
*
|
||||
* @author Simon Vieille <simon@deblan.fr>
|
||||
*/
|
||||
class NavigationSettingRepositoryQuery extends RepositoryQuery
|
||||
{
|
||||
public function __construct(NavigationSettingRepository $repository, PaginatorInterface $paginator)
|
||||
{
|
||||
parent::__construct($repository, 'ns', $paginator);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue