From b06bd7613cb53c5e526d866b27c0566888ee69a4 Mon Sep 17 00:00:00 2001 From: Christian Anger Date: Wed, 18 Mar 2015 15:16:10 +0100 Subject: [PATCH] Removing double function --- figo/Session.php | 12 ------------ 1 file changed, 12 deletions(-) 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 *