@@ -28,10 +28,10 @@ discard block |
||
| 28 | 28 | * @param string $merchant_id Merchant ID. |
| 29 | 29 | * @param string|null $shop_id Shop ID. |
| 30 | 30 | */ |
| 31 | - public function __construct( $transaction_id, $merhant_id, $shop_id = null ) { |
|
| 32 | - parent::__construct( $merhant_id, $shop_id ); |
|
| 31 | + public function __construct($transaction_id, $merhant_id, $shop_id = null) { |
|
| 32 | + parent::__construct($merhant_id, $shop_id); |
|
| 33 | 33 | |
| 34 | - $this->set_parameter( 'trxid', $transaction_id ); |
|
| 34 | + $this->set_parameter('trxid', $transaction_id); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | /** |
@@ -41,16 +41,16 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | public function get_signature_data() { |
| 43 | 43 | return array( |
| 44 | - $this->get_parameter( 'trxid' ), |
|
| 44 | + $this->get_parameter('trxid'), |
|
| 45 | 45 | |
| 46 | 46 | /* |
| 47 | 47 | * Indien er geen gebruik wordt gemaakt van de shopid dan kunt u deze weglaten uit de berekening. |
| 48 | 48 | */ |
| 49 | - $this->get_parameter( 'shopid' ), |
|
| 49 | + $this->get_parameter('shopid'), |
|
| 50 | 50 | |
| 51 | - $this->get_parameter( 'merchantid' ), |
|
| 51 | + $this->get_parameter('merchantid'), |
|
| 52 | 52 | |
| 53 | - $this->get_parameter( 'merchantkey' ), |
|
| 53 | + $this->get_parameter('merchantkey'), |
|
| 54 | 54 | ); |
| 55 | 55 | } |
| 56 | 56 | } |