Skip to content

Commit

Permalink
Using bc array syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mschindler committed Mar 29, 2016
1 parent 5064c36 commit c0a2503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/IntegrationBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ class IntegrationBase extends \PHPUnit_Framework_TestCase
{
public function createToken()
{
$params = [
$params = array(
'channel_id' => API_PUBLIC_TEST_KEY,
'transaction_mode' => 'CONNECTOR_TEST',
'account_number' => '4111111111111111',
'account_holder' => 'Max Muster',
'account_expiry_month' => '12',
'account_expiry_year' => date('Y', strtotime('+1 year')),

];
);
$token = json_decode(file_get_contents(TOKEN_HOST . '?' . http_build_query($params)), true);
if (isset($token['transaction']['identification']['uniqueId'])) {
return $token['transaction']['identification']['uniqueId'];
Expand Down

0 comments on commit c0a2503

Please sign in to comment.