| 1 | <?php |
||
| 21 | abstract class AbstractRequest extends \Omnipay\Common\Message\AbstractRequest |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Get the MerchantId |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | 19 | public function getMerchantId() |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @param string $value your datatrans merchant ID |
||
| 34 | * @return $this |
||
| 35 | */ |
||
| 36 | 29 | public function setMerchantId($value) |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | 19 | public function getSign() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @param string $value |
||
| 51 | * @return $this |
||
| 52 | */ |
||
| 53 | 29 | public function setSign($value) |
|
| 57 | } |
||
| 58 |