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