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

40 行
967B

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