add navigation setting
This commit is contained in:
parent
9b5cee2e03
commit
92887b029e
15 changed files with 592 additions and 33 deletions
21
core/Repository/NavigationSettingRepository.php
Normal file
21
core/Repository/NavigationSettingRepository.php
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace App\Core\Repository;
|
||||
|
||||
use App\Core\Entity\NavigationSetting;
|
||||
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
||||
use Doctrine\Persistence\ManagerRegistry;
|
||||
|
||||
/**
|
||||
* @method NavigationSetting|null find($id, $lockMode = null, $lockVersion = null)
|
||||
* @method NavigationSetting|null findOneBy(array $criteria, array $orderBy = null)
|
||||
* @method NavigationSetting[] findAll()
|
||||
* @method NavigationSetting[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
||||
*/
|
||||
class NavigationSettingRepository extends ServiceEntityRepository
|
||||
{
|
||||
public function __construct(ManagerRegistry $registry)
|
||||
{
|
||||
parent::__construct($registry, NavigationSetting::class);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue