Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

40 lines
1.0KB

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