mediawiki-extensions-Confir.../includes/CaptchaValue.php
Reedy 30cd1d8a23 Namespace base classes
Change-Id: I3fa9747e0ea970c5de39e2da8603e1bba9388a69
2022-07-30 18:13:03 +00:00

27 lines
360 B
PHP

<?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.
* @var string
*/
protected $id;
/**
* Answer to the captcha.
* @var string
*/
protected $solution;
/**
* @var mixed
*/
protected $data;
}