Skip to content

Commit

Permalink
Removing double function
Browse files Browse the repository at this point in the history
  • Loading branch information
angerits committed Mar 18, 2015
1 parent 3524ff0 commit b06bd76
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions figo/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,18 +192,6 @@ public function get_transactions($account_id = null, $since = null, $count = 100
return $result;
}

/**
* Retrieve a specific transaction
*
* @param string ID of the account on which the transaction occured
* @param string ID of the transaction to be retrieved
* @return Transaction a `Transaction` object representing the transaction to be retrieved
*/
public function get_transaction($account_id, $transaction_id) {
$response = $this->query_api("/rest/accounts/".$account_id."/transactions/".$transaction_id);
return (is_null($response) ? null : new Transaction($this, $response));
}

/**
* Retrieve a specific bank
*
Expand Down

0 comments on commit b06bd76

Please sign in to comment.