Skip to content

Commit

Permalink
Fix get tokenized card infos
Browse files Browse the repository at this point in the history
  • Loading branch information
andersonvalesan authored Jul 16, 2018
1 parent 403dd7b commit 5104ba6
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 5104ba6

Please sign in to comment.