forked from fa/breadcrumb-the-shire
Repo Interface für tests
This commit is contained in:
12
lib/Repository/Settings/SettingRepositoryInterface.php
Normal file
12
lib/Repository/Settings/SettingRepositoryInterface.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user