Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

40 lines
1.1KB

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