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.

40 lines
970B

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