firefly-iii/app/lib/Firefly/Storage/TransactionJournal/TransactionJournalRepositoryInterface.php

14 lines
318 B
PHP
Raw Normal View History

<?php
namespace Firefly\Storage\TransactionJournal;
interface TransactionJournalRepositoryInterface
{
public function createSimpleJournal(\Account $from, \Account $to, $description, $amount, \Carbon\Carbon $date);
public function get();
public function getByAccount(\Account $account, $count = 25);
}