No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

42 líneas
1005B

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