mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
20 lines
364 B
PHP
20 lines
364 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Services\Captcha;
|
||
|
|
|
||
|
|
interface CaptchaDriverInterface
|
||
|
|
{
|
||
|
|
public function isEnabled(): bool;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Render the captcha markup for HTML forms.
|
||
|
|
*/
|
||
|
|
public function render(array $context = []): string;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Verify the captcha response.
|
||
|
|
*/
|
||
|
|
public function verify(array $payload, array $context = []): bool;
|
||
|
|
}
|
||
|
|
|