N°5388 - PHP 8.2: Fix dynamic properties

This commit is contained in:
Molkobain
2022-12-14 19:51:21 +01:00
parent 314dd7d7ad
commit 27cf8159d0
4 changed files with 41 additions and 0 deletions

View File

@@ -53,6 +53,18 @@ class DBObjectSet implements iDBObjectSetIterator
* @var array
*/
protected $m_aAttToLoad;
/**
* @var null|array
*/
protected $m_aExtendedDataSpec;
/**
* @var int Maximum number of elements to retrieve
*/
protected $m_iLimitCount;
/**
* @var int Offset from which elements should be retrieved
*/
protected $m_iLimitStart;
/**
* @var array
*/