Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
716cf56cb2.url-de-test.ws
/
htdocs_old
/
src
/
Repository
/
//srv/data/web/vhosts/716cf56cb2.url-de-test.ws/htdocs_old/src/Repository/PdfRepository.php
<?php namespace App\Repository; use App\Entity\Pdf; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Symfony\Bridge\Doctrine\RegistryInterface; /** * @method Pdf|null find($id, $lockMode = null, $lockVersion = null) * @method Pdf|null findOneBy(array $criteria, array $orderBy = null) * @method Pdf[] findAll() * @method Pdf[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class PdfRepository extends ServiceEntityRepository { public function __construct(RegistryInterface $registry) { parent::__construct($registry, Pdf::class); } // /** // * @return Pdf[] Returns an array of Pdf objects // */ /* public function findByExampleField($value) { return $this->createQueryBuilder('p') ->andWhere('p.exampleField = :val') ->setParameter('val', $value) ->orderBy('p.id', 'ASC') ->setMaxResults(10) ->getQuery() ->getResult() ; } */ /* public function findOneBySomeField($value): ?Pdf { return $this->createQueryBuilder('p') ->andWhere('p.exampleField = :val') ->setParameter('val', $value) ->getQuery() ->getOneOrNullResult() ; } */ }