您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ProductContainer.php 970B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. }