mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-20 19:35:16 +00:00
20 lines
376 B
PHP
20 lines
376 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\Account;
|
|
|
|
|
|
interface AccountRepositoryInterface
|
|
{
|
|
|
|
public function count();
|
|
|
|
public function get();
|
|
public function getByIds($ids);
|
|
public function getDefault();
|
|
public function getActiveDefault();
|
|
|
|
public function store($data);
|
|
public function storeWithInitialBalance($data,\Carbon\Carbon $date, $amount = 0);
|
|
|
|
}
|