選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

35 行
871B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Product;
  3. use Lc\CaracoleBundle\Repository\SectionStoreTrait;
  4. use Lc\SovBundle\Repository\AbstractRepository;
  5. use Lc\SovBundle\Repository\RepositoryQueryInterface;
  6. class ProductFamilySectionPropertyStore extends AbstractRepository
  7. {
  8. use SectionStoreTrait;
  9. protected ProductFamilySectionPropertyRepositoryQuery $query;
  10. public function __construct(ProductFamilySectionPropertyRepositoryQuery $query)
  11. {
  12. $this->query = $query;
  13. }
  14. public function orderByDefault(RepositoryQueryInterface $query): RepositoryQueryInterface
  15. {
  16. return $query;
  17. }
  18. public function filtersDefault(RepositoryQueryInterface $query): RepositoryQueryInterface
  19. {
  20. return $query;
  21. }
  22. public function relationsDefault($query): RepositoryQueryInterface
  23. {
  24. return $query;
  25. }
  26. }