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

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