New stuff for transaction edits [skip ci]

This commit is contained in:
James Cole
2014-07-25 07:17:56 +02:00
parent a40b281ea3
commit 03994dd774
6 changed files with 93 additions and 7 deletions

View File

@@ -11,10 +11,12 @@ interface TransactionJournalRepositoryInterface
public function find($journalId);
public function getByAccountInDateRange(\Account $account, $count = 25,\Carbon\Carbon $start, \Carbon\Carbon $end);
public function getByAccountInDateRange(\Account $account, $count = 25, \Carbon\Carbon $start, \Carbon\Carbon $end);
public function getByAccountAndDate(\Account $account, \Carbon\Carbon $date);
public function getByDateRange(\Carbon\Carbon $start, \Carbon\Carbon $end);
public function paginate($count = 25);
}