mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-06 04:34:00 +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);
|
|
|
|
} |