mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-23 15:56:50 +00:00
48a60aa762
Change-Id: I75f34c66f1c1968cfb9a3e1932068ec2420e0fa6
25 lines
342 B
PHP
25 lines
342 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.
|
|
*/
|
|
protected string $id;
|
|
|
|
/**
|
|
* Answer to the captcha.
|
|
*/
|
|
protected string $solution;
|
|
|
|
/**
|
|
* @var mixed
|
|
*/
|
|
protected $data;
|
|
|
|
}
|