Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

32 lines
695B

  1. <?php
  2. namespace common\logic\User\UserProducer;
  3. use common\logic\ContainerInterface;
  4. use common\logic\AbstractSingleton;
  5. class UserProducerContainer extends AbstractSingleton implements ContainerInterface
  6. {
  7. public function getEntityFqcn(): string
  8. {
  9. return UserProducer::class;
  10. }
  11. public function getServices(): array
  12. {
  13. return [
  14. UserProducerRepository::class,
  15. UserProducerBuilder::class,
  16. ];
  17. }
  18. public function getRepository(): UserProducerRepository
  19. {
  20. return new UserProducerRepository();
  21. }
  22. public function getBuilder(): UserProducerBuilder
  23. {
  24. return new UserProducerBuilder();
  25. }
  26. }