Files
Spookie/src/Repository/PagesRepository.php
2022-11-04 10:32:59 +01:00

69 lines
1.8 KiB
PHP

<?php
namespace App\Repository;
use App\Entity\Pages;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<Pages>
*
* @method Pages|null find($id, $lockMode = null, $lockVersion = null)
* @method Pages|null findOneBy(array $criteria, array $orderBy = null)
* @method Pages[] findAll()
* @method Pages[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class PagesRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct(registry: $registry, entityClass: Pages::class);
}
public function add(Pages $entity, bool $flush = true): void
{
$this->_em->persist(entity: $entity);
if ($flush) {
$this->_em->flush();
}
}
public function remove(Pages $entity, bool $flush = true): void
{
$this->_em->remove(entity: $entity);
if ($flush) {
$this->_em->flush();
}
}
// /**
// * @return Pages[] Returns an array of Pages objects
// */
/*
public function findByExampleField($value)
{
return $this->createQueryBuilder('p')
->andWhere('p.exampleField = :val')
->setParameter('val', $value)
->orderBy('p.id', 'ASC')
->setMaxResults(10)
->getQuery()
->getResult()
;
}
*/
/*
public function findOneBySomeField($value): ?Pages
{
return $this->createQueryBuilder('p')
->andWhere('p.exampleField = :val')
->setParameter('val', $value)
->getQuery()
->getOneOrNullResult()
;
}
*/
}