Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

UserGroupContainer.php 605B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace common\logic\User\UserGroup;
  3. use common\logic\ContainerInterface;
  4. class UserGroupContainer implements ContainerInterface
  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 getFactory(): UserGroupBuilder
  18. {
  19. return new UserGroupBuilder();
  20. }
  21. public function getRepository(): UserGroupRepository
  22. {
  23. return new UserGroupRepository();
  24. }
  25. }