mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
31 lines
506 B
PHP
31 lines
506 B
PHP
|
<?php
|
||
|
|
||
|
namespace Firefly\Helper\Controllers;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Collection;
|
||
|
|
||
|
/**
|
||
|
* Interface AccountInterface
|
||
|
*
|
||
|
* @package Firefly\Helper\Controllers
|
||
|
*/
|
||
|
interface AccountInterface
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Build the index:
|
||
|
*
|
||
|
* @param Collection $accounts
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function index(Collection $accounts);
|
||
|
|
||
|
/**
|
||
|
* @param Account $account
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function openingBalanceTransaction(\Account $account);
|
||
|
|
||
|
}
|