mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-20 00:20:03 +00:00
18 lines
303 B
PHP
18 lines
303 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();
|
||
|
|
}
|