Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

25 Zeilen
784B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Product;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface;
  5. use Lc\CaracoleBundle\Repository\SectionRepositoryQueryTrait;
  6. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  7. class ProductFamilySectionPropertyRepositoryQuery extends AbstractRepositoryQuery
  8. {
  9. use SectionRepositoryQueryTrait;
  10. public function __construct(ProductFamilySectionPropertyRepository $repository, PaginatorInterface $paginator)
  11. {
  12. parent::__construct($repository, 'productFamilySectionProperty', $paginator);
  13. }
  14. public function filterByProductFamily(ProductFamilyInterface $productFamily): self
  15. {
  16. return $this->andWhereEqual('productFamily', $productFamily);
  17. }
  18. }