1 | <?php |
||
8 | class PurchaseResponse extends AbstractResponse implements RedirectResponseInterface |
||
9 | { |
||
10 | /** |
||
11 | * Get the API endpoint. |
||
12 | * |
||
13 | * @return string |
||
14 | */ |
||
15 | 1 | protected function getEndpoint() |
|
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | 1 | public function getRedirectUrl() |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 1 | public function isSuccessful() |
|
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | 1 | public function isRedirect() |
|
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | 1 | public function getRedirectMethod() |
|
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | 1 | public function getRedirectData() |
|
59 | } |
||
60 |