mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-02 02:18:20 +00:00
15 lines
217 B
PHP
15 lines
217 B
PHP
<?php
|
|
|
|
namespace Firefly\Storage\Budget;
|
|
|
|
|
|
interface BudgetRepositoryInterface
|
|
{
|
|
public function getAsSelectList();
|
|
public function get();
|
|
|
|
public function store($data);
|
|
|
|
public function find($id);
|
|
|
|
}
|