|
|
@@ -0,0 +1,50 @@ |
|
|
|
<?php |
|
|
|
|
|
|
|
namespace Lc\ShopBundle\Repository; |
|
|
|
|
|
|
|
use Lc\ShopBundle\Context\SectionInterface; |
|
|
|
use Lc\ShopBundle\Context\DefaultRepositoryInterface; |
|
|
|
|
|
|
|
/** |
|
|
|
* @method SectionInterface|null find($id, $lockMode = null, $lockVersion = null) |
|
|
|
* @method SectionInterface|null findOneBy(array $criteria, array $orderBy = null) |
|
|
|
* @method SectionInterface[] findAll() |
|
|
|
* @method SectionInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) |
|
|
|
*/ |
|
|
|
class SectionRepository extends BaseRepository implements DefaultRepositoryInterface |
|
|
|
{ |
|
|
|
public function getInterfaceClass() |
|
|
|
{ |
|
|
|
return SectionInterface::class; |
|
|
|
} |
|
|
|
|
|
|
|
// /** |
|
|
|
// * @return Address[] Returns an array of Address objects |
|
|
|
// */ |
|
|
|
/* |
|
|
|
public function findByExampleField($value) |
|
|
|
{ |
|
|
|
return $this->createQueryBuilder('a') |
|
|
|
->andWhere('a.exampleField = :val') |
|
|
|
->setParameter('val', $value) |
|
|
|
->orderBy('a.id', 'ASC') |
|
|
|
->setMaxResults(10) |
|
|
|
->getQuery() |
|
|
|
->getResult() |
|
|
|
; |
|
|
|
} |
|
|
|
*/ |
|
|
|
|
|
|
|
/* |
|
|
|
public function findOneBySomeField($value): ?Address |
|
|
|
{ |
|
|
|
return $this->createQueryBuilder('a') |
|
|
|
->andWhere('a.exampleField = :val') |
|
|
|
->setParameter('val', $value) |
|
|
|
->getQuery() |
|
|
|
->getOneOrNullResult() |
|
|
|
; |
|
|
|
} |
|
|
|
*/ |
|
|
|
} |
|
|
|
|