Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

UserPointSaleModule.php 876B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace domain\PointSale\UserPointSale;
  3. use domain\_\AbstractModule;
  4. class UserPointSaleModule extends AbstractModule
  5. {
  6. public function getServices(): array
  7. {
  8. return [
  9. UserPointSaleDefinition::class,
  10. UserPointSaleRepository::class,
  11. UserPointSaleBuilder::class,
  12. UserPointSaleSolver::class
  13. ];
  14. }
  15. public function getDefinition(): UserPointSaleDefinition
  16. {
  17. return UserPointSaleDefinition::getInstance();
  18. }
  19. public function getRepository(): UserPointSaleRepository
  20. {
  21. return UserPointSaleRepository::getInstance();
  22. }
  23. public function getBuilder(): UserPointSaleBuilder
  24. {
  25. return UserPointSaleBuilder::getInstance();
  26. }
  27. public function getSolver(): UserPointSaleSolver
  28. {
  29. return UserPointSaleSolver::getInstance();
  30. }
  31. }