diff --git a/figo/Session.php b/figo/Session.php index f7e194d..60c6e88 100644 --- a/figo/Session.php +++ b/figo/Session.php @@ -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 *