Skip to content

Commit f83d829

Browse files
committed
PHP 5.3 fix
1 parent 7572880 commit f83d829

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Gateway.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function setClientSecret($value)
7878
*
7979
* @return PurchaseRequest
8080
*/
81-
public function purchase(array $options = [])
81+
public function purchase(array $options = array())
8282
{
8383
return $this->createRequest('\Omnipay\Neteller\Message\PurchaseRequest', $options);
8484
}
@@ -88,7 +88,7 @@ public function purchase(array $options = [])
8888
*
8989
* @return PayoutRequest
9090
*/
91-
public function payout(array $options = [])
91+
public function payout(array $options = array())
9292
{
9393
return $this->createRequest('\Omnipay\Neteller\Message\PayoutRequest', $options);
9494
}
@@ -98,7 +98,7 @@ public function payout(array $options = [])
9898
*
9999
* @return FetchTransactionRequest
100100
*/
101-
public function fetchTransaction(array $options = [])
101+
public function fetchTransaction(array $options = array())
102102
{
103103
return $this->createRequest('\Omnipay\Neteller\Message\FetchTransactionRequest', $options);
104104
}

0 commit comments

Comments
 (0)