Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

28 lines
549B

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