Files
firefly-iii/app/Repositories/Account/AccountRepositoryInterface.php
2015-02-11 07:35:10 +01:00

19 lines
297 B
PHP

<?php
namespace FireflyIII\Repositories\Account;
/**
* Interface AccountRepositoryInterface
*
* @package FireflyIII\Repositories\Account
*/
interface AccountRepositoryInterface
{
/**
* @param array $data
*
* @return mixed
*/
public function store(array $data);
}