Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <?php
-
- namespace common\logic\Payment\Wrapper;
-
- use common\logic\AbstractManager;
- use common\logic\Payment\Repository\PaymentRepository;
- use common\logic\Payment\Service\PaymentUtils;
- use common\logic\Payment\Service\PaymentBuilder;
- use common\logic\Payment\Service\PaymentDefinition;
- use common\logic\Payment\Service\PaymentSolver;
-
- /**
- * @mixin PaymentDefinition
- * @mixin PaymentSolver
- * @mixin PaymentRepository
- * @mixin PaymentBuilder
- * @mixin PaymentUtils
- */
- class PaymentManager extends AbstractManager
- {
- public function getContainerFqcn(): string
- {
- return PaymentContainer::class;
- }
- }
|