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.

31 lines
618B

  1. <?php
  2. namespace common\logic\User\UserGroup;
  3. use common\logic\AbstractContainer;
  4. class UserGroupContainer extends AbstractContainer
  5. {
  6. public function getEntityFqcn(): string
  7. {
  8. return UserGroup::class;
  9. }
  10. public function getServices(): array
  11. {
  12. return [
  13. UserGroupBuilder::class,
  14. UserGroupRepository::class
  15. ];
  16. }
  17. public function getBuilder(): UserGroupBuilder
  18. {
  19. return UserGroupBuilder::getInstance();
  20. }
  21. public function getRepository(): UserGroupRepository
  22. {
  23. return UserGroupRepository::getInstance();
  24. }
  25. }