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.

38 lines
906B

  1. <?php
  2. namespace domain\Product\RotatingProduct;
  3. use domain\_\AbstractModule;
  4. class RotatingProductModule extends AbstractModule
  5. {
  6. public function getServices(): array
  7. {
  8. return [
  9. RotatingProductDefinition::class,
  10. RotatingProductBuilder::class,
  11. RotatingProductRepository::class,
  12. RotatingProductManager::class
  13. ];
  14. }
  15. public function getDefinition(): RotatingProductDefinition
  16. {
  17. return RotatingProductDefinition::getInstance();
  18. }
  19. public function getBuilder(): RotatingProductBuilder
  20. {
  21. return RotatingProductBuilder::getInstance();
  22. }
  23. public function getRepository(): RotatingProductRepository
  24. {
  25. return RotatingProductRepository::getInstance();
  26. }
  27. public function getManager(): RotatingProductManager
  28. {
  29. return RotatingProductManager::getInstance();
  30. }
  31. }