forked from fa/breadcrumb-the-shire
11 lines
207 B
PHP
11 lines
207 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Service\Settings;
|
|
|
|
interface SettingsCryptoGatewayInterface
|
|
{
|
|
public function encryptString(string $value): string;
|
|
|
|
public function decryptString(string $value): string;
|
|
}
|