mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-10 04:21:20 +00:00
17 lines
266 B
PHP
17 lines
266 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\Account;
|
|
|
|
|
|
interface AccountRepositoryInterface
|
|
{
|
|
|
|
public function count();
|
|
|
|
public function get();
|
|
|
|
public function store($data);
|
|
public function storeWithInitialBalance($data,\Carbon\Carbon $date, $amount = 0);
|
|
|
|
}
|