MDL-76024 qtype calculated: Fix deprecation related to dynamic property

This commit is contained in:
Huong Nguyen 2024-02-20 16:38:49 +07:00
parent f406ea8b76
commit e8d5dc93e0
No known key found for this signature in database
GPG key ID: 40D88AB693A3E72A

View file

@ -35,4 +35,10 @@ class qtype_calculated_answer extends \qtype_numerical_answer {
/** @var int The format of the correct answer. */ /** @var int The format of the correct answer. */
public $correctanswerformat; public $correctanswerformat;
/** @var int The max tolerance of the correct answer. */
public $max;
/** @var int The min tolerance of the correct answer. */
public $min;
} }