Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Product;
-
- use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface;
- use Lc\CaracoleBundle\Resolver\Price\PriceResolver;
- use Lc\SovBundle\Repository\AbstractStore;
-
- class ProductStore extends AbstractStore
- {
- protected ProductRepositoryQuery $query;
-
- public function __construct(ProductRepositoryQuery $query, PriceResolver $priceResolver)
- {
- $this->query = $query;
- }
- }
|