| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class CompletionOf3dSecureRequest extends AbstractRequest |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * {@inheritDoc} |
||
| 27 | */ |
||
| 28 | protected function getRelativeUrl(): string |
||
| 29 | { |
||
| 30 | return '/payments/cards/post3ds'; |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritDoc} |
||
| 35 | */ |
||
| 36 | public function createModel(): ModelInterface |
||
| 37 | { |
||
| 38 | return new CompletionOf3dSecureModel; |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritDoc} |
||
| 43 | */ |
||
| 44 | public function getStrategy(): StrategyInterface |
||
| 47 | } |
||
| 48 | } |
||
| 49 |