mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 10:21:25 -06:00
9 lines
132 B
PHP
9 lines
132 B
PHP
|
<?php
|
||
|
|
||
|
namespace FireflyIII\Repositories\Account;
|
||
|
|
||
|
|
||
|
interface AccountRepositoryInterface
|
||
|
{
|
||
|
public function store(array $data);
|
||
|
}
|