mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-25 06:51:08 +00:00
16 lines
306 B
PHP
16 lines
306 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sander
|
|
* Date: 03/07/14
|
|
* Time: 15:22
|
|
*/
|
|
|
|
namespace Firefly\Storage\TransactionJournal;
|
|
|
|
|
|
interface TransactionJournalRepositoryInterface {
|
|
|
|
public function createSimpleJournal(\Account $from, \Account $to, $description, $amount, \Carbon\Carbon $date);
|
|
|
|
}
|