Add missing properties to MailAddress class

Change-Id: I6f199cee22678391938637685a1a81771528eac4
This commit is contained in:
addshore 2016-12-23 15:42:47 +00:00 committed by Addshore
parent 2792221354
commit 79e841bcf8

View file

@ -30,6 +30,22 @@
* header format when requested.
*/
class MailAddress {
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $realName;
/**
* @var string
*/
public $address;
/**
* @param string $address String with an email address, or a User object
* @param string $name Human-readable name if a string address is given