first commit
This commit is contained in:
60
src/Repository/LigneRepository.php
Normal file
60
src/Repository/LigneRepository.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?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()
|
||||
// ;
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user