Files
breadcrumb-the-shire/core/Service/Settings/SettingsCryptoGatewayInterface.php

11 lines
207 B
PHP
Raw Normal View History

2026-03-06 00:44:52 +01:00
<?php
namespace MintyPHP\Service\Settings;
interface SettingsCryptoGatewayInterface
{
public function encryptString(string $value): string;
public function decryptString(string $value): string;
}