Files
vision/src/Repository/SubGroupRepository.php
Xbird 9f22f5b1ee V-Beta-1.0.0
Vision is out of alpha !
2022-02-02 17:46:29 +01:00

51 lines
1.3 KiB
PHP

<?php
namespace App\Repository;
use App\Entity\SubGroup;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @method SubGroup|null find($id, $lockMode = null, $lockVersion = null)
* @method SubGroup|null findOneBy(array $criteria, array $orderBy = null)
* @method SubGroup[] findAll()
* @method SubGroup[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class SubGroupRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, SubGroup::class);
}
// /**
// * @return SubGroup[] Returns an array of SubGroup 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): ?SubGroup
{
return $this->createQueryBuilder('s')
->andWhere('s.exampleField = :val')
->setParameter('val', $value)
->getQuery()
->getOneOrNullResult()
;
}
*/
}