mirror of
https://github.com/flarum/core.git
synced 2025-10-12 23:44:27 +02:00
15 lines
224 B
PHP
15 lines
224 B
PHP
<?php
|
|
|
|
namespace Flarum\Core\Settings;
|
|
|
|
interface SettingsRepository
|
|
{
|
|
public function all();
|
|
|
|
public function get($key, $default = null);
|
|
|
|
public function set($key, $value);
|
|
|
|
public function delete($key);
|
|
}
|