1 | <?php |
||
20 | final class PaymentStateMachineTransitionApplicator |
||
21 | { |
||
22 | /** @var StateMachineFactoryInterface $stateMachineFactory */ |
||
23 | private $stateMachineFactory; |
||
24 | |||
25 | public function __construct(StateMachineFactoryInterface $stateMachineFactory) |
||
29 | |||
30 | public function complete(PaymentInterface $data): PaymentInterface |
||
36 | |||
37 | private function applyTransition(PaymentInterface $payment, string $transition): void |
||
42 | } |
||
43 |