forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDL-78860 qtype_calculatedmulti: PHP 8.2 compatibility
PHP 8.2 has deprecated setting properties on objects dynamically. The qtype_calculatedmulti question type had two properties being set this way($correctanswerlength and$correctanswerformat). This patch extends the question_answer class to add the properties when the object is instantiated.
- Loading branch information
Matt Porritt
committed
Aug 4, 2023
1 parent
a1d5d1b
commit d843893
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
question/type/calculatedmulti/classes/qtype_calculatedmulti_answer.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
// This file is part of Moodle - http://moodle.org/ | ||
// | ||
// Moodle is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Moodle is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
declare(strict_types=1); | ||
|
||
namespace qtype_calculatedmulti; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
require_once($CFG->dirroot . '/question/type/questionbase.php'); | ||
|
||
/** | ||
* Class to represent a calculated question answer. | ||
* | ||
* @package qtype_calculatedmulti | ||
* @copyright 2023 Matt Porritt <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class qtype_calculatedmulti_answer extends \question_answer { | ||
/** @var int The length of the correct answer. */ | ||
public $correctanswerlength; | ||
|
||
/** @var int The format of the correct answer. */ | ||
public $correctanswerformat; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters