mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 02:45:58 +00:00
9 lines
132 B
PHP
9 lines
132 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace FireflyIII\Repositories\Account;
|
||
|
|
||
|
|
||
|
interface AccountRepositoryInterface
|
||
|
{
|
||
|
public function store(array $data);
|
||
|
}
|