mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-24 08:13:53 +00:00
25 lines
316 B
PHP
25 lines
316 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* 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;
|
||
|
|
||
|
}
|