- trop de trucs d'un coup... je vais faire attention ensuite ^^'
This commit is contained in:
48
src/Repository/ContentSourceRepository.php
Normal file
48
src/Repository/ContentSourceRepository.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repository;
|
||||
|
||||
use App\Entity\ContentSource;
|
||||
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
||||
use Doctrine\Persistence\ManagerRegistry;
|
||||
|
||||
/**
|
||||
* @extends ServiceEntityRepository<ContentSource>
|
||||
*
|
||||
* @method ContentSource|null find($id, $lockMode = null, $lockVersion = null)
|
||||
* @method ContentSource|null findOneBy(array $criteria, array $orderBy = null)
|
||||
* @method ContentSource[] findAll()
|
||||
* @method ContentSource[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
||||
*/
|
||||
class ContentSourceRepository extends ServiceEntityRepository
|
||||
{
|
||||
public function __construct(ManagerRegistry $registry)
|
||||
{
|
||||
parent::__construct($registry, ContentSource::class);
|
||||
}
|
||||
|
||||
// /**
|
||||
// * @return ContentSource[] Returns an array of ContentSource objects
|
||||
// */
|
||||
// public function findByExampleField($value): array
|
||||
// {
|
||||
// return $this->createQueryBuilder('c')
|
||||
// ->andWhere('c.exampleField = :val')
|
||||
// ->setParameter('val', $value)
|
||||
// ->orderBy('c.id', 'ASC')
|
||||
// ->setMaxResults(10)
|
||||
// ->getQuery()
|
||||
// ->getResult()
|
||||
// ;
|
||||
// }
|
||||
|
||||
// public function findOneBySomeField($value): ?ContentSource
|
||||
// {
|
||||
// return $this->createQueryBuilder('c')
|
||||
// ->andWhere('c.exampleField = :val')
|
||||
// ->setParameter('val', $value)
|
||||
// ->getQuery()
|
||||
// ->getOneOrNullResult()
|
||||
// ;
|
||||
// }
|
||||
}
|
||||
@@ -39,6 +39,15 @@ class MangaRepository extends ServiceEntityRepository
|
||||
}
|
||||
}
|
||||
|
||||
public function findByTitle(string $title): array
|
||||
{
|
||||
return $this->createQueryBuilder('m')
|
||||
->andWhere('m.title LIKE :title')
|
||||
->setParameter('title', "%$title%")
|
||||
->getQuery()
|
||||
->getResult();
|
||||
}
|
||||
|
||||
// /**
|
||||
// * @return Manga[] Returns an array of Manga objects
|
||||
// */
|
||||
|
||||
Reference in New Issue
Block a user