You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 satır
654B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Address;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\CaracoleBundle\Repository\MerchantRepositoryQueryTrait;
  5. use Lc\SovBundle\Model\User\UserInterface;
  6. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  7. class AddressRepositoryQuery extends AbstractRepositoryQuery
  8. {
  9. use MerchantRepositoryQueryTrait;
  10. public function __construct(AddressRepository $repository, PaginatorInterface $paginator)
  11. {
  12. parent::__construct($repository, 'address', $paginator);
  13. }
  14. public function filterByUser(UserInterface $user)
  15. {
  16. return $this->andWhereEqual('user', $user);
  17. }
  18. }