1 | <?php |
||
9 | class Refund implements RequestInterface |
||
10 | { |
||
11 | protected $options; |
||
12 | protected $token; |
||
13 | |||
14 | public function __construct($token, array $options = array()) |
||
29 | |||
30 | protected function setDefaultOptions(OptionsResolver $resolver) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function getMethod() |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function getPath() |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function getData() |
||
61 | } |
||
62 |