mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-17 01:42:19 +00:00
22 lines
668 B
PHP
22 lines
668 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);
|
|
|
|
public function homeBudgetChart(\Carbon\Carbon $start, \Carbon\Carbon $end);
|
|
|
|
public function homeCategoryChart(\Carbon\Carbon $start, \Carbon\Carbon $end);
|
|
|
|
public function homeBeneficiaryChart(\Carbon\Carbon $start, \Carbon\Carbon $end);
|
|
|
|
public function homeComponentChart(\Carbon\Carbon $start, \Carbon\Carbon $end, $chartType);
|
|
|
|
} |