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