firefly-iii/app/Repositories/Account/AccountRepositoryInterface.php

19 lines
297 B
PHP
Raw Normal View History

2015-02-09 00:23:39 -06:00
<?php
namespace FireflyIII\Repositories\Account;
2015-02-11 00:35:10 -06:00
/**
* Interface AccountRepositoryInterface
*
* @package FireflyIII\Repositories\Account
*/
2015-02-09 00:23:39 -06:00
interface AccountRepositoryInterface
{
2015-02-11 00:35:10 -06:00
/**
* @param array $data
*
* @return mixed
*/
2015-02-09 00:23:39 -06:00
public function store(array $data);
}