First attempt at storing an account.

This commit is contained in:
James Cole
2015-02-09 07:23:39 +01:00
parent 169d1065cc
commit 3841259779
12 changed files with 258 additions and 111 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace FireflyIII\Repositories\Account;
interface AccountRepositoryInterface
{
public function store(array $data);
}