mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 14:33:11 -06:00
30 lines
511 B
PHP
30 lines
511 B
PHP
<?php
|
|
|
|
namespace Firefly\Helper\Controllers;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
/**
|
|
* Interface AccountInterface
|
|
*
|
|
* @package Firefly\Helper\Controllers
|
|
*/
|
|
interface AccountInterface
|
|
{
|
|
|
|
/**
|
|
* @param \Account $account
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function openingBalanceTransaction(\Account $account);
|
|
|
|
/**
|
|
* @param \Account $account
|
|
* @param $perPage
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function show(\Account $account, $perPage);
|
|
|
|
}
|