MDL-77350 mod_h5pactivity: Added missing class properties

In PHP 8.2 and later, setting a value to an undeclared class property is
deprecated and emits a deprecation notice.
So we need to add missing class properties that still need to be declared.
This commit is contained in:
Meirza
2023-05-16 00:33:19 +07:00
parent 0cfa082328
commit 0fcba75ea7
@@ -52,7 +52,6 @@ class attempt {
*/
public function __construct(stdClass $record) {
$this->record = $record;
$this->results = null;
}
/**