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;
/**
* @var string The civility code, not an integer
*/
public $civility_id;
public $civility_code;
public $civility;
/**
* @var string company name
* @deprecated

View File

@@ -130,6 +130,16 @@ class Contact extends CommonObject
public $civility_code;
public $civility;
/**
* @var int egroupware_id
*/
public $egroupware_id;
/**
* @var int birthday_alert
*/
public $birthday_alert;
/**
* @var string The civilite code, not an integer
* @deprecated
@@ -137,6 +147,11 @@ class Contact extends CommonObject
*/
public $civilite;
/**
* @var string fullname
*/
public $fullname;
/**
* @var string Address
*/

View File

@@ -76,6 +76,11 @@ class User extends CommonObject
public $employee;
public $civility_code;
/**
* @var string fullname
*/
public $fullname;
/**
* @var string gender
*/