mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-01 18:10:06 +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();
|
||
|
}
|