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.

21 lines
519B

  1. <?php
  2. namespace common\logic\User\UserGroup\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\User\UserGroup\Repository\UserGroupRepository;
  5. use common\logic\User\UserGroup\Service\UserGroupBuilder;
  6. use common\logic\User\UserGroup\Service\UserGroupDefinition;
  7. /**
  8. * @mixin UserGroupDefinition
  9. * @mixin UserGroupRepository
  10. * @mixin UserGroupBuilder
  11. */
  12. class UserGroupManager extends AbstractManager
  13. {
  14. public function getContainerFqcn(): string
  15. {
  16. return UserGroupContainer::class;
  17. }
  18. }