mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 04:03:26 +00:00
14 lines
147 B
PHP
14 lines
147 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\Account;
|
|
|
|
|
|
interface AccountRepositoryInterface
|
|
{
|
|
|
|
public function count();
|
|
|
|
public function store();
|
|
|
|
}
|