- <?php
-
- namespace Lc\CaracoleBundle\Repository\Reduction;
-
- use Lc\SovBundle\Repository\AbstractStore;
-
- class ReductionCreditStore extends AbstractStore
- {
- protected ReductionCreditRepositoryQuery $query;
-
- public function __construct(ReductionCreditRepositoryQuery $query)
- {
- $this->query = $query;
- }
- }
|