Skip to content

Commit 168371e

Browse files
author
Konstantinos Christofilos
committed
Fix compatibility with PHP 5.3
1 parent 5ed62e1 commit 168371e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Gateway.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public function clientToken(array $parameters = array())
119119
*/
120120
public function findCustomer($id)
121121
{
122-
return $this->createRequest('\Omnipay\Braintree\Message\FindCustomerRequest', ['customerId' => $id]);
122+
return $this->createRequest('\Omnipay\Braintree\Message\FindCustomerRequest', array('customerId' => $id));
123123
}
124124

125125
/**

0 commit comments

Comments
 (0)