選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

UserPointSaleContainer.php 1.0KB

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