forked from fa/breadcrumb-the-shire
13 lines
279 B
PHP
13 lines
279 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Repository\Settings;
|
||
|
|
|
||
|
|
interface SettingRepositoryInterface
|
||
|
|
{
|
||
|
|
public function find(string $key): ?array;
|
||
|
|
|
||
|
|
public function getValue(string $key): ?string;
|
||
|
|
|
||
|
|
public function set(string $key, ?string $value, ?string $description = null): bool;
|
||
|
|
}
|