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.

19 lines
455B

  1. <?php
  2. namespace common\logic\User\UserProducer\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\User\UserProducer\Repository\UserProducerRepository;
  5. use common\logic\User\UserProducer\Service\UserProducerBuilder;
  6. /**
  7. * @mixin UserProducerRepository
  8. * @mixin UserProducerBuilder
  9. */
  10. class UserProducerManager extends AbstractManager
  11. {
  12. public function getContainerFqcn(): string
  13. {
  14. return UserProducerContainer::class;
  15. }
  16. }