fix undeclared properties for php 8.2

This commit is contained in:
Frédéric France 2023-01-18 22:20:25 +01:00
parent ea6964ccd0
commit cccba873a8
3 changed files with 27 additions and 0 deletions

View File

@ -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

View File

@ -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
*/ */

View File

@ -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
*/ */