summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/ConfirmEdit/includes/CaptchaValue.php
blob: 87302009197e736b691128321be489ddcee78542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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;

}