Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace common\containers;
-
- use common\logic\ContainerInterface;
- use common\logic\UserProducer\UserProducerModel;
- use common\repositories\UserProducerRepository;
-
- class UserProducerContainer implements ContainerInterface
- {
- public function getEntityFqcn(): string
- {
- return UserProducerModel::class;
- }
-
- public function getServices(): array
- {
- return [
- UserProducerRepository::class
- ];
- }
-
-
- public function getRepository()
- {
- return new UserProducerRepository();
- }
- }
|