* * @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() ; } */ }