15 lines
347 B
PHP
15 lines
347 B
PHP
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
|
|
|
|
namespace MailPoet\Subscription\Captcha\Validator;
|
|
|
|
if (!defined('ABSPATH')) exit;
|
|
|
|
|
|
interface CaptchaValidator {
|
|
/**
|
|
* @param array $data
|
|
* @return bool
|
|
* @throws ValidationError
|
|
*/
|
|
public function validate(array $data): bool;
|
|
}
|