PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Subscription
/
Captcha
/
Validator
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing namespace MailPoet\Subscription\Captcha\Validator; if (!defined('ABSPATH')) exit; class ValidationError extends \RuntimeException { private $meta = []; public function __construct( $message = "", array $meta = [], $code = 0, \Throwable $previous = null ) { $this->meta = $meta; $this->meta['error'] = $message; parent::__construct($message, $code, $previous); } public function getMeta(): array { return $this->meta; } }
[-] index.php
[edit]
[+]
..
[-] ValidationError.php
[edit]
[-] BuiltInCaptchaValidator.php
[edit]
[-] CaptchaValidator.php
[edit]
[-] RecaptchaValidator.php
[edit]