Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 lines
339B

  1. <?php
  2. namespace common\containers;
  3. use common\repositories\UserProducerRepository;
  4. use common\services\UserProducerService;
  5. class UserProducerContainer
  6. {
  7. public function getService()
  8. {
  9. return new UserProducerService();
  10. }
  11. public function getRepository()
  12. {
  13. return new UserProducerRepository();
  14. }
  15. }