MDL-77336 admin: Added class properties that are not declared.

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-03-06 16:44:06 +07:00
parent 556208417d
commit e2d5d50276
33 changed files with 200 additions and 15 deletions
@@ -38,6 +38,12 @@ use core\check\result;
*/
class adhocqueue extends check {
/** @var string adhocqueue id. */
protected string $id = '';
/** @var string adhocqueue name. */
protected string $name = '';
/**
* Constructor
*/