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