mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 19:47:48 +00:00
17 lines
234 B
PHP
17 lines
234 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* Created by PhpStorm.
|
||
|
* User: User
|
||
|
* Date: 29-7-14
|
||
|
* Time: 10:42
|
||
|
*/
|
||
|
|
||
|
namespace Firefly\Helper\Controllers;
|
||
|
|
||
|
|
||
|
interface ChartInterface
|
||
|
{
|
||
|
|
||
|
public function account(\Account $account);
|
||
|
public function accounts();
|
||
|
}
|