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