- <?php
-
- namespace common\containers;
-
- use common\repositories\UserProducerRepository;
- use common\services\UserProducerService;
-
- class UserProducerContainer
- {
- public function getService()
- {
- return new UserProducerService();
- }
-
- public function getRepository()
- {
- return new UserProducerRepository();
- }
- }
|