Encartes-backend/src/Repository/PlaneSurfaceRepository.php
Mysaa 145f4aa7fd
Mise à jour de symfony
Mise à jour de PHP
Correction des entitées from attributes to annotations
Ajout des entitées des objets 3D
2023-01-17 17:27:49 +01:00

67 lines
1.9 KiB
PHP

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