mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 14:46:37 +00:00
14 lines
318 B
PHP
14 lines
318 B
PHP
<?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);
|
|
|
|
} |