| 1 | <?php |
||
| 10 | class RedirectPurchaseResponse |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $url; |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | private $data; |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $method = 'POST'; |
||
| 24 | |||
| 25 | public function __construct(string $url, array $data) |
||
| 30 | |||
| 31 | public function getRedirectUrl(): string |
||
| 35 | |||
| 36 | public function getRedirectData(): array |
||
| 40 | |||
| 41 | public function setMethod($method) |
||
| 47 | |||
| 48 | public function getMethod() |
||
| 52 | } |
||
| 53 |