mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-21 03:42:54 +00:00
11 lines
154 B
PHP
11 lines
154 B
PHP
<?php
|
|
|
|
namespace Firefly\Storage\Budget;
|
|
|
|
|
|
interface BudgetRepositoryInterface
|
|
{
|
|
public function getAsSelectList();
|
|
public function find($id);
|
|
|
|
}
|