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.

20 satır
333B

  1. <?php
  2. namespace domain\Opinion;
  3. use domain\_\AbstractModule;
  4. class OpinionModule extends AbstractModule
  5. {
  6. public function getServices(): array
  7. {
  8. return [
  9. OpinionManager::class
  10. ];
  11. }
  12. public function getManager(): OpinionManager
  13. {
  14. return OpinionManager::getInstance();
  15. }
  16. }