fix undeclared properties for php 8.2
This commit is contained in:
parent
ea6964ccd0
commit
cccba873a8
@ -94,6 +94,13 @@ class Adherent extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $fullname;
|
public $fullname;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string The civility code, not an integer
|
||||||
|
*/
|
||||||
|
public $civility_id;
|
||||||
|
public $civility_code;
|
||||||
|
public $civility;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string company name
|
* @var string company name
|
||||||
* @deprecated
|
* @deprecated
|
||||||
|
|||||||
@ -130,6 +130,16 @@ class Contact extends CommonObject
|
|||||||
public $civility_code;
|
public $civility_code;
|
||||||
public $civility;
|
public $civility;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int egroupware_id
|
||||||
|
*/
|
||||||
|
public $egroupware_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int birthday_alert
|
||||||
|
*/
|
||||||
|
public $birthday_alert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string The civilite code, not an integer
|
* @var string The civilite code, not an integer
|
||||||
* @deprecated
|
* @deprecated
|
||||||
@ -137,6 +147,11 @@ class Contact extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $civilite;
|
public $civilite;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string fullname
|
||||||
|
*/
|
||||||
|
public $fullname;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string Address
|
* @var string Address
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -76,6 +76,11 @@ class User extends CommonObject
|
|||||||
public $employee;
|
public $employee;
|
||||||
public $civility_code;
|
public $civility_code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string fullname
|
||||||
|
*/
|
||||||
|
public $fullname;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string gender
|
* @var string gender
|
||||||
*/
|
*/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user