mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-04 19:53:44 +00:00
26 lines
410 B
PHP
26 lines
410 B
PHP
<?php
|
|
|
|
namespace Firefly\Storage\Piggybank;
|
|
|
|
|
|
/**
|
|
* Interface LimitRepositoryInterface
|
|
*
|
|
* @package Firefly\Storage\Limit
|
|
*/
|
|
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);
|
|
|
|
}
|