adding PHPDoc
This commit is contained in:
parent
147007bdd8
commit
7853bc4cac
|
@ -21,11 +21,30 @@
|
||||||
|
|
||||||
namespace OC\Share;
|
namespace OC\Share;
|
||||||
|
|
||||||
|
use DateTime;
|
||||||
|
|
||||||
class MailNotifications {
|
class MailNotifications {
|
||||||
|
|
||||||
private $senderId; // sender userId
|
/**
|
||||||
private $from; // sender email address
|
* sender userId
|
||||||
|
* @var null|string
|
||||||
|
*/
|
||||||
|
private $senderId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sender email address
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private $from;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
private $senderDisplayName;
|
private $senderDisplayName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \OC_L10N
|
||||||
|
*/
|
||||||
private $l;
|
private $l;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue