mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-28 16:24:05 +02:00
Declare properties that are dynamically used
Dynamic properties are deprecated since PHP 8.2.
This commit is contained in:
parent
00523d9b35
commit
98f6768dcb
@ -27,6 +27,8 @@ class ServiceSetQueryBuilder
|
||||
/** @var \Zend_Db_Adapter_Abstract */
|
||||
protected $db;
|
||||
|
||||
protected $searchColumns = [];
|
||||
|
||||
/**
|
||||
* @param ?UuidInterface $uuid
|
||||
*/
|
||||
|
@ -10,6 +10,8 @@ class TestSuiteLint extends TestSuite
|
||||
|
||||
protected $failed;
|
||||
|
||||
protected $result = [];
|
||||
|
||||
public function run()
|
||||
{
|
||||
$this->checked = $this->failed = array();
|
||||
|
@ -4,6 +4,8 @@ namespace Icinga\Module\Director\Test;
|
||||
|
||||
abstract class TestSuiteUnit
|
||||
{
|
||||
private $testdoxFile;
|
||||
|
||||
public function run()
|
||||
{
|
||||
}
|
||||
@ -15,7 +17,7 @@ abstract class TestSuiteUnit
|
||||
public function __destruct()
|
||||
{
|
||||
if ($this->testdoxFile && file_exists($this->testdoxFile)) {
|
||||
unlink($this->testDoxfile);
|
||||
unlink($this->testdoxFile);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -26,6 +26,8 @@ class ExtensibleSetElement extends BaseHtmlElement
|
||||
|
||||
private $description;
|
||||
|
||||
private $descriptions;
|
||||
|
||||
private $multiOptions;
|
||||
|
||||
private $validOptions;
|
||||
|
Loading…
x
Reference in New Issue
Block a user