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