Some basic fixes for the transaction controller [skip ci]

This commit is contained in:
James Cole
2014-08-02 07:34:38 +02:00
parent af856a135f
commit d756324432
31 changed files with 726 additions and 341 deletions

View File

@@ -12,9 +12,15 @@ interface PiggybankRepositoryInterface
{
public function find($piggyBankId);
public function count();
public function store($data);
public function get();
public function updateAmount(\Piggybank $piggyBank, $amount);
public function update($data);
}