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

40 行
979B

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