Total Complexity | 5 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
21 | final class CancelRecurringSubscriptionProcessor implements CancelRecurringSubscriptionProcessorInterface |
||
22 | { |
||
23 | /** @var Payum */ |
||
24 | private $payum; |
||
25 | |||
26 | /** @var Session */ |
||
27 | private $session; |
||
28 | |||
29 | public function __construct(Payum $payum, Session $session) |
||
30 | { |
||
31 | $this->payum = $payum; |
||
32 | $this->session = $session; |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function process(SubscriptionInterface $subscription): void |
||
58 | } |
||
59 | } |
||
60 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.