| 1 | <?php |
||
| 26 | class RefundRequest extends AbstractRequest |
||
| 27 | { |
||
| 28 | use CancelTrait; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Get the raw data array for this message. The format of this varies from gateway to |
||
| 32 | * gateway, but will usually be either an associative array, or a SimpleXMLElement. |
||
| 33 | * |
||
| 34 | * @return SimpleXMLElement |
||
| 35 | */ |
||
| 36 | 2 | public function getData() |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @param SimpleXMLElement $response |
||
| 47 | * |
||
| 48 | * @return ResponseInterface |
||
| 49 | */ |
||
| 50 | 1 | protected function createResponse($response) |
|
| 54 | |||
| 55 | /** |
||
| 56 | * @return string |
||
| 57 | */ |
||
| 58 | 1 | protected function getEndpoint() |
|
| 62 | } |
||
| 63 |