mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
52 lines
936 B
PHP
52 lines
936 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Helper\TransactionJournal;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Interface HelperInterface
|
|
*
|
|
* @package FireflyIII\Helper\TransactionJournal
|
|
*/
|
|
interface HelperInterface
|
|
{
|
|
/**
|
|
*
|
|
* Get the account_id, which is the asset account that paid for the transaction.
|
|
*
|
|
* @param string $what
|
|
* @param Collection $transactions
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getAssetAccount($what, Collection $transactions);
|
|
|
|
/**
|
|
* @param $what
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getTransactionTypeIdByWhat($what);
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getAssetAccounts();
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getBudgets();
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getPiggyBanks();
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getRepeatedExpenses();
|
|
|
|
} |