mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-20 19:35:16 +00:00
9 lines
173 B
PHP
9 lines
173 B
PHP
![]() |
<?php
|
||
|
namespace Firefly\Helper\Preferences;
|
||
|
interface PreferencesHelperInterface
|
||
|
{
|
||
|
|
||
|
public function set($name,$value);
|
||
|
public function get($name,$default = null);
|
||
|
|
||
|
}
|