MDL-78159 lib: Added missing properties for core libraries

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-06-21 15:39:53 +07:00
parent 1b1a15a308
commit 97ff68fd6b
26 changed files with 152 additions and 28 deletions
+6
View File
@@ -496,6 +496,12 @@ class filterobject {
/** @var null|string once initialised, holds the mangled HTML to replace the regexp with. */
public $workreplacementphrase = null;
/** @var null|callable hold a replacement function to be called. */
public $replacementcallback;
/** @var null|array data to be passed to $replacementcallback. */
public $replacementcallbackdata;
/**
* Constructor.
*