Skip to content

Commit

Permalink
Merge pull request #1 from andersonvalesan/fix_tokenized_card_info
Browse files Browse the repository at this point in the history
Fix get tokenized card infos
  • Loading branch information
adhenrique authored Jul 17, 2018
2 parents 403dd7b + 5104ba6 commit 4984476
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Lib/ZoopTokens.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function tokenizeBankAccount($post){
* @param string $token
*/
public function get($token){
$api = 'tokens' . $token;
$this->APIResource->searchAPI($api);
$api = 'tokens/' . $token;
return $this->APIResource->searchAPI($api);
}
}
}

0 comments on commit 4984476

Please sign in to comment.