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.

17 line
313B

  1. <?php
  2. namespace common\logic\User\UserProducer;
  3. use common\logic\AbstractManager;
  4. /**
  5. * @mixin UserProducerRepository
  6. * @mixin UserProducerBuilder
  7. */
  8. class UserProducerManager extends AbstractManager
  9. {
  10. public function __construct()
  11. {
  12. $this->setContainer(new UserProducerContainer());
  13. }
  14. }