mediawiki-extensions-Confir.../includes/CaptchaValue.php
Reedy 48a60aa762 Various minor code cleanup
Change-Id: I75f34c66f1c1968cfb9a3e1932068ec2420e0fa6
2024-10-30 01:48:33 +00:00

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;
}