mediawiki-extensions-Confir.../includes/CaptchaValue.php

25 lines
342 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Extension\ConfirmEdit;
/**
* Simple value object for storing a captcha question + answer.
*/
class CaptchaValue {
/**
* ID that is used to store the captcha in cache.
*/
protected string $id;
/**
* Answer to the captcha.
*/
protected string $solution;
/**
* @var mixed
*/
protected $data;
}