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

40 行
1.1KB

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