Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
trash
/
vhost_www.bachtale.com_1719306535
/
htdocs
/
src
/
Repository
/
//srv/data/trash/vhost_www.bachtale.com_1719306535/htdocs/src/Repository/ProductImageRepository.php
<?php namespace App\Repository; use App\Entity\ProductImage; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Common\Persistence\ManagerRegistry; /** * @method ProductImage|null find($id, $lockMode = null, $lockVersion = null) * @method ProductImage|null findOneBy(array $criteria, array $orderBy = null) * @method ProductImage[] findAll() * @method ProductImage[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class ProductImageRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, ProductImage::class); } // /** // * @return ProductImage[] Returns an array of ProductImage 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): ?ProductImage { return $this->createQueryBuilder('p') ->andWhere('p.exampleField = :val') ->setParameter('val', $value) ->getQuery() ->getOneOrNullResult() ; } */ }