Add and remove transactions.

This commit is contained in:
James Cole
2015-02-24 22:53:38 +01:00
parent 5b9c2cdc13
commit d83b508bbc
15 changed files with 398 additions and 33 deletions

View File

@@ -1,13 +1,8 @@
<?php
/**
* Created by PhpStorm.
* User: sander
* Date: 08/02/15
* Time: 18:15
*/
namespace FireflyIII\Repositories\Journal;
use FireflyIII\Models\TransactionJournal;
/**
* Interface JournalRepositoryInterface
@@ -16,5 +11,11 @@ namespace FireflyIII\Repositories\Journal;
*/
interface JournalRepositoryInterface
{
/**
* @param array $data
*
* @return TransactionJournal
*/
public function store(array $data);
}