1 | <?php |
||
19 | abstract class AbstractRedirectRequest extends AbstractRequest |
||
20 | { |
||
21 | /** |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $optionalParams = array( |
||
25 | |||
26 | ); |
||
27 | |||
28 | /** |
||
29 | * @return array |
||
30 | */ |
||
31 | public function getData() |
||
58 | |||
59 | /** |
||
60 | * @param $value |
||
61 | * @return string |
||
62 | */ |
||
63 | public function setErrorUrl($value) |
||
67 | |||
68 | /** |
||
69 | * @return string |
||
70 | */ |
||
71 | public function getErrorUrl() |
||
75 | |||
76 | /** |
||
77 | * @return ResponseInterface |
||
78 | */ |
||
79 | public function send() |
||
83 | |||
84 | /** |
||
85 | * Send the request with specified data |
||
86 | * |
||
87 | * @param mixed $data The data to send |
||
88 | * @return ResponseInterface |
||
89 | */ |
||
90 | public function sendData($data) |
||
94 | } |
||
95 |