mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-14 19:30:11 +00:00
30cd1d8a23
Change-Id: I3fa9747e0ea970c5de39e2da8603e1bba9388a69
27 lines
360 B
PHP
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;
|
|
|
|
}
|