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.

25 line
617B

  1. <?php
  2. namespace common\logic\Payment\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\Payment\Repository\PaymentRepository;
  5. use common\logic\Payment\Service\PaymentUtils;
  6. use common\logic\Payment\Service\PaymentBuilder;
  7. use common\logic\Payment\Service\PaymentDefinition;
  8. use common\logic\Payment\Service\PaymentSolver;
  9. /**
  10. * @mixin PaymentDefinition
  11. * @mixin PaymentSolver
  12. * @mixin PaymentRepository
  13. * @mixin PaymentBuilder
  14. * @mixin PaymentUtils
  15. */
  16. class PaymentManager extends AbstractManager
  17. {
  18. public function getContainerFqcn(): string
  19. {
  20. return PaymentContainer::class;
  21. }
  22. }