mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-05-05 13:43:36 +00:00
12 lines
155 B
PHP
12 lines
155 B
PHP
<?php
|
|
|
|
namespace Firefly\Storage\Budget;
|
|
|
|
|
|
interface BudgetRepositoryInterface
|
|
{
|
|
public function getAsSelectList();
|
|
|
|
public function find($id);
|
|
|
|
}
|