mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-16 03:32:05 -06:00
9 lines
132 B
PHP
9 lines
132 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Repositories\Account;
|
|
|
|
|
|
interface AccountRepositoryInterface
|
|
{
|
|
public function store(array $data);
|
|
} |