You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
958B

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