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