Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Talita committed Nov 18, 2015
2 parents cfea930 + c71c151 commit b320699
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ try {
Instantiate the module passing using your client_id, client_secret and sandbox equals true:
```php
$options = [
'client_id': 'client_id',
'client_secret': 'client_secret',
'sandbox': true
'client_id' => 'client_id',
'client_secret' => 'client_secret',
'sandbox' => true
];

$api = new Gerencianet($options);
Expand All @@ -58,9 +58,9 @@ $api = new Gerencianet($options);
To change the environment to production, just set the third sandbox to false:
```php
$options = [
'client_id': 'client_id',
'client_secret': 'client_secret',
'sandbox': false
'client_id' => 'client_id',
'client_secret' => 'client_secret',
'sandbox' => false
];

$api = new Gerencianet($options);
Expand Down

0 comments on commit b320699

Please sign in to comment.