Skip to content

Commit fea1d68

Browse files
sudiptpaStyleCIBot
authored andcommitted
Applied fixes from StyleCI
1 parent b07f30e commit fea1d68

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

src/Message/AbstractRequest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ public function getMerchantId()
2727

2828
/**
2929
* @param $value
30+
*
3031
* @return mixed
3132
*/
3233
public function setMerchantId($value)
@@ -44,6 +45,7 @@ public function getTransactionPassword()
4445

4546
/**
4647
* @param $value
48+
*
4749
* @return mixed
4850
*/
4951
public function setTransactionPassword($value)

src/Message/SecureXMLCaptureRequest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ public function setPreauthId($value)
4747

4848
/**
4949
* @return string The preauthId from the authorize request that this capture matches.
50-
*
5150
*/
5251
public function getPreauthId()
5352
{

src/SecureXMLGateway.php

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
/**
88
* NABTransact Secure XML Gateway.
9-
*
109
*/
1110
class SecureXMLGateway extends AbstractGateway
1211
{
@@ -18,9 +17,9 @@ public function getName()
1817
public function getDefaultParameters()
1918
{
2019
return array(
21-
'merchantId' => '',
20+
'merchantId' => '',
2221
'transactionPassword' => '',
23-
'testMode' => false,
22+
'testMode' => false,
2423
);
2524
}
2625

@@ -34,6 +33,7 @@ public function getMerchantId()
3433

3534
/**
3635
* @param $value
36+
*
3737
* @return mixed
3838
*/
3939
public function setMerchantId($value)
@@ -51,6 +51,7 @@ public function getTransactionPassword()
5151

5252
/**
5353
* @param $value
54+
*
5455
* @return mixed
5556
*/
5657
public function setTransactionPassword($value)
@@ -60,6 +61,7 @@ public function setTransactionPassword($value)
6061

6162
/**
6263
* @param array $parameters
64+
*
6365
* @return mixed
6466
*/
6567
public function authorize(array $parameters = array())
@@ -69,6 +71,7 @@ public function authorize(array $parameters = array())
6971

7072
/**
7173
* @param array $parameters
74+
*
7275
* @return mixed
7376
*/
7477
public function capture(array $parameters = array())
@@ -78,6 +81,7 @@ public function capture(array $parameters = array())
7881

7982
/**
8083
* @param array $parameters
84+
*
8185
* @return mixed
8286
*/
8387
public function purchase(array $parameters = array())
@@ -87,6 +91,7 @@ public function purchase(array $parameters = array())
8791

8892
/**
8993
* @param array $parameters
94+
*
9095
* @return mixed
9196
*/
9297
public function refund(array $parameters = array())
@@ -96,6 +101,7 @@ public function refund(array $parameters = array())
96101

97102
/**
98103
* @param array $parameters
104+
*
99105
* @return mixed
100106
*/
101107
public function echoTest(array $parameters = array())

0 commit comments

Comments
 (0)