mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-14 08:54:21 +01:00
fix undeclared properties for php 8.2
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
|
||||
@@ -76,6 +76,11 @@ class User extends CommonObject
|
||||
public $employee;
|
||||
public $civility_code;
|
||||
|
||||
/**
|
||||
* @var string fullname
|
||||
*/
|
||||
public $fullname;
|
||||
|
||||
/**
|
||||
* @var string gender
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user