mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-10 12:24:50 +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();
|
|
}
|