mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-02-07 04:36:24 +00:00
15 lines
238 B
PHP
15 lines
238 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\Account;
|
|
|
|
|
|
interface AccountRepositoryInterface
|
|
{
|
|
|
|
public function count();
|
|
|
|
public function store($data);
|
|
public function storeWithInitialBalance($data,\Carbon\Carbon $date, $amount = 0);
|
|
|
|
}
|