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.

17 lines
298B

  1. <?php
  2. namespace common\logic\User\UserGroup;
  3. use common\logic\AbstractManager;
  4. /**
  5. * @mixin UserGroupRepository
  6. * @mixin UserGroupBuilder
  7. */
  8. class UserGroupManager extends AbstractManager
  9. {
  10. public function __construct()
  11. {
  12. $this->setContainer(new UserGroupContainer());
  13. }
  14. }