Cleanup and fix everything related to piggy banks.

This commit is contained in:
Sander Dorigo
2014-10-31 07:32:43 +01:00
parent f7722c1189
commit 3231effd20
18 changed files with 697 additions and 245 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace FireflyIII\Database\Ifaces;
/**
* Interface PiggybankInterface
*
* @package FireflyIII\Database\Ifaces
*/
interface PiggybankInterface
{
/**
* @param \Account $account
*
* @return float
*/
public function leftOnAccount(\Account $account);
}