1 | <?php |
||
17 | abstract class AbstractRequest extends \Omnipay\Common\Message\AbstractRequest |
||
18 | { |
||
19 | protected $zeroAmountAllowed = false; |
||
20 | |||
21 | /** |
||
22 | * Get the purse. |
||
23 | * |
||
24 | * @return string purse |
||
25 | 9 | */ |
|
26 | public function getPurse() |
||
30 | |||
31 | /** |
||
32 | * Set the purse. |
||
33 | * |
||
34 | * @param string $value purse |
||
35 | * |
||
36 | * @return self |
||
37 | 13 | */ |
|
38 | public function setPurse($value) |
||
42 | |||
43 | /** |
||
44 | * Get the secret key. |
||
45 | * |
||
46 | * @return string secret key |
||
47 | 6 | */ |
|
48 | public function getSecret() |
||
52 | |||
53 | /** |
||
54 | * Set the secret key. |
||
55 | * |
||
56 | * @param string $value secret key |
||
57 | * |
||
58 | * @return self |
||
59 | 13 | */ |
|
60 | public function setSecret($value) |
||
64 | } |
||
65 |