Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

42 lines
1.1KB

  1. <?php
  2. namespace Lc\CaracoleBundle\Container\Reduction;
  3. use Lc\CaracoleBundle\Factory\Reduction\ReductionCartFactory;
  4. use Lc\CaracoleBundle\Repository\Reduction\ReductionCartRepositoryQuery;
  5. use Lc\CaracoleBundle\Repository\Reduction\ReductionCartStore;
  6. class ReductionCartContainer
  7. {
  8. protected ReductionCartFactory $factory;
  9. protected ReductionCartRepositoryQuery $repositoryQuery;
  10. protected ReductionCartStore $store;
  11. public function __construct(
  12. ReductionCartFactory $factory,
  13. ReductionCartRepositoryQuery $repositoryQuery,
  14. ReductionCartStore $store
  15. ) {
  16. $this->factory = $factory;
  17. $this->repositoryQuery = $repositoryQuery;
  18. $this->store = $store;
  19. }
  20. public function getFactory(): ReductionCartFactory
  21. {
  22. return $this->factory;
  23. }
  24. public function getRepositoryQuery(): ReductionCartRepositoryQuery
  25. {
  26. return $this->repositoryQuery;
  27. }
  28. public function getStore(): ReductionCartStore
  29. {
  30. $this->store->resetContext();
  31. return $this->store;
  32. }
  33. }