You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
<?php |
|
|
|
namespace App\Repository; |
|
|
|
use App\Entity\Facture; |
|
use Doctrine\Persistence\ManagerRegistry; |
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; |
|
|
|
/** |
|
* @method Facture|null find($id, $lockMode = null, $lockVersion = null) |
|
* @method Facture|null findOneBy(array $criteria, array $orderBy = null) |
|
* @method Facture[] findAll() |
|
* @method Facture[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) |
|
*/ |
|
class FactureRepository extends ServiceEntityRepository |
|
{ |
|
public function __construct(ManagerRegistry $registry) |
|
{ |
|
parent::__construct($registry, Facture::class); |
|
} |
|
|
|
// /** |
|
// * @return Facture[] Returns an array of Facture objects |
|
// */ |
|
/* |
|
public function findByExampleField($value) |
|
{ |
|
return $this->createQueryBuilder('f') |
|
->andWhere('f.exampleField = :val') |
|
->setParameter('val', $value) |
|
->orderBy('f.id', 'ASC') |
|
->setMaxResults(10) |
|
->getQuery() |
|
->getResult() |
|
; |
|
} |
|
*/ |
|
|
|
/* |
|
public function findOneBySomeField($value): ?Facture |
|
{ |
|
return $this->createQueryBuilder('f') |
|
->andWhere('f.exampleField = :val') |
|
->setParameter('val', $value) |
|
->getQuery() |
|
->getOneOrNullResult() |
|
; |
|
} |
|
*/ |
|
}
|
|
|