mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 19:54:43 +08:00
8 lines
189 B
PHP
8 lines
189 B
PHP
<?php
|
|
|
|
interface TwoFactorAuthInterface
|
|
{
|
|
public function Label() : string;
|
|
public function VerifyCode(string $sSecret, string $sCode) : bool;
|
|
public function CreateSecret() : string;
|
|
}
|