|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
-
- namespace Lc\ShopBundle\Repository;
-
- use App\Entity\ProductFamily;
- use Doctrine\ORM\EntityManager;
-
- /**
- * @method ProductFamily|null find($id, $lockMode = null, $lockVersion = null)
- * @method ProductFamily|null findOneBy(array $criteria, array $orderBy = null)
- * @method ProductFamily[] findAll()
- * @method ProductFamily[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
- */
- class ProductFamilyRepository extends BaseRepository
- {
- public function __construct(EntityManager $registry)
- {
- parent::__construct($registry, ProductFamily::class);
- }
-
-
- // /**
- // * @return ProductFamily[] Returns an array of ProductFamily 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): ?ProductFamily
- {
- return $this->createQueryBuilder('p')
- ->andWhere('p.exampleField = :val')
- ->setParameter('val', $value)
- ->getQuery()
- ->getOneOrNullResult()
- ;
- }
- */
- }
|