| 1 | <?php |
||
| 25 | abstract class AbstractDatatransGateway extends AbstractGateway |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | 66 | public function getDefaultParameters() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @param $value |
||
| 42 | * @return $this |
||
| 43 | */ |
||
| 44 | 66 | public function setMerchantId($value) |
|
| 48 | |||
| 49 | /** |
||
| 50 | * get the merchant id |
||
| 51 | * |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | 2 | public function getMerchantId() |
|
| 58 | |||
| 59 | /** |
||
| 60 | * @param $value |
||
| 61 | * @return $this |
||
| 62 | */ |
||
| 63 | 66 | public function setSign($value) |
|
| 67 | |||
| 68 | /** |
||
| 69 | * @return string |
||
| 70 | */ |
||
| 71 | 2 | public function getSign() |
|
| 75 | |||
| 76 | /** |
||
| 77 | * @param array $options |
||
| 78 | * |
||
| 79 | * @return TokenizeRequest |
||
| 80 | */ |
||
| 81 | 4 | public function createCard(array $options = array()) |
|
| 85 | } |
||
| 86 |