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.

18 lines
421B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Order;
  3. use Lc\CaracoleBundle\Model\Order\OrderProductInterface;
  4. use Lc\CaracoleBundle\Model\Order\OrderShopInterface;
  5. use Lc\SovBundle\Repository\AbstractStore;
  6. class OrderProductStore extends AbstractStore
  7. {
  8. protected OrderProductRepositoryQuery $query;
  9. public function __construct(OrderProductRepositoryQuery $query)
  10. {
  11. $this->query = $query;
  12. }
  13. }