Browse Source

test perf

feature/export_comptable
Fab 4 years ago
parent
commit
750c816542
1 changed files with 9 additions and 2 deletions
  1. +9
    -2
      ShopBundle/Repository/MerchantRepository.php

+ 9
- 2
ShopBundle/Repository/MerchantRepository.php View File



namespace Lc\ShopBundle\Repository; namespace Lc\ShopBundle\Repository;


use Lc\ShopBundle\Context\DefaultRepositoryInterface;
use Doctrine\ORM\EntityRepository;
use Lc\ShopBundle\Context\MerchantInterface; use Lc\ShopBundle\Context\MerchantInterface;


/** /**
* @method MerchantInterface[] findAll() * @method MerchantInterface[] findAll()
* @method MerchantInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) * @method MerchantInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/ */
class MerchantRepository extends BaseRepository implements DefaultRepositoryInterface
class MerchantRepository extends EntityRepository
{ {
public function findAllWithConfigs()
{
$qb = $this->createQueryBuilder('hub');
$qb->innerJoin('hub.merchantConfigs', 'merchant_configs');
return $qb->getQuery()->getResult();
}

public function getInterfaceClass() public function getInterfaceClass()
{ {
return MerchantInterface::class; return MerchantInterface::class;

Loading…
Cancel
Save