1
0
mirror of https://github.com/flarum/core.git synced 2025-10-12 23:44:27 +02:00
Files
php-flarum/src/Core/Settings/SettingsRepository.php
2015-08-14 12:48:29 +09:30

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);
}