mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
adding PHPDoc
This commit is contained in:
parent
147007bdd8
commit
7853bc4cac
1 changed files with 21 additions and 2 deletions
|
|
@ -21,11 +21,30 @@
|
|||
|
||||
namespace OC\Share;
|
||||
|
||||
use DateTime;
|
||||
|
||||
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;
|
||||
|
||||
/**
|
||||
* @var \OC_L10N
|
||||
*/
|
||||
private $l;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue