mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-23 04:46:44 +00:00
10 lines
176 B
PHP
10 lines
176 B
PHP
<?php
|
|
namespace Firefly\Helper\Preferences;
|
|
interface PreferencesHelperInterface
|
|
{
|
|
|
|
public function set($name, $value);
|
|
|
|
public function get($name, $default = null);
|
|
|
|
} |