Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
18 | final class ChangePositionPaymentMethodAction |
||
19 | { |
||
20 | /** @var ChangePositionPaymentMethodCreatorInterface */ |
||
21 | private $changePositionPaymentMethodCreator; |
||
22 | |||
23 | public function __construct(ChangePositionPaymentMethodCreatorInterface $changePositionPaymentMethodCreator) |
||
24 | { |
||
25 | $this->changePositionPaymentMethodCreator = $changePositionPaymentMethodCreator; |
||
26 | } |
||
27 | |||
28 | public function __invoke(Request $request): Response |
||
33 | } |
||
34 | } |
||
35 |