You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace common\logic\User\UserProducer\Wrapper;
-
- use common\logic\AbstractManager;
- use common\logic\User\UserProducer\Repository\UserProducerRepository;
- use common\logic\User\UserProducer\Service\UserProducerBuilder;
- use common\logic\User\UserProducer\Service\UserProducerDefinition;
-
- /**
- * @mixin UserProducerDefinition
- * @mixin UserProducerRepository
- * @mixin UserProducerBuilder
- */
- class UserProducerManager extends AbstractManager
- {
- public function getContainerFqcn(): string
- {
- return UserProducerContainer::class;
- }
- }
|