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 line
927B

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