Skip to content

Commit

Permalink
Permite envio do caminho do certificado
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliadeveza committed Mar 16, 2016
1 parent f665f6a commit 80843d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gerencianet/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function __construct(array $options = null)
$this->config = Config::options($options);
$composerData = json_decode(file_get_contents(__DIR__.'/../../composer.json'), true);
$partner_token = isset($options['partner_token'])? $options['partner_token'] : "";
$this->certified_path = $options['certified_path'];
$this->certified_path = isset($options['certified_path'])? $options['certified_path'] : null;
$this->client = new Client([
'debug' => $this->config['debug'],
'base_url' => $this->config['baseUri'],
Expand Down

0 comments on commit 80843d5

Please sign in to comment.