61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repository;
|
|
|
|
use App\Entity\Menu;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\ORM\NonUniqueResultException;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
/**
|
|
* @extends ServiceEntityRepository<Menu>
|
|
*
|
|
* @method Menu|null find($id, $lockMode = null, $lockVersion = null)
|
|
* @method Menu|null findOneBy(array $criteria, array $orderBy = null)
|
|
* @method Menu[] findAll()
|
|
* @method Menu[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
|
*/
|
|
final class MenuRepository extends ServiceEntityRepository
|
|
{
|
|
private const ENTITY_CLASS = Menu::class;
|
|
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, self::ENTITY_CLASS);
|
|
}
|
|
|
|
public function save(Menu $entity, bool $flush = false): void
|
|
{
|
|
$this->getEntityManager()->persist($entity);
|
|
|
|
if ($flush) {
|
|
$this->getEntityManager()->flush();
|
|
}
|
|
}
|
|
|
|
public function remove(Menu $entity, bool $flush = false): void
|
|
{
|
|
$this->getEntityManager()->remove($entity);
|
|
|
|
if ($flush) {
|
|
$this->getEntityManager()->flush();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws NonUniqueResultException
|
|
*/
|
|
public function getByCode(string $code): Menu
|
|
{
|
|
/** @var Menu */
|
|
return $this
|
|
->createQueryBuilder('m')
|
|
->where('m.code = :code')
|
|
->setParameter('code', $code)
|
|
->setMaxResults(1)
|
|
->getQuery()
|
|
->getOneOrNullResult();
|
|
}
|
|
}
|