adding PHPDoc

This commit is contained in:
Thomas Müller 2014-05-13 12:21:04 +02:00 committed by Robin McCorkell
parent 147007bdd8
commit 7853bc4cac
1 changed files with 21 additions and 2 deletions

View File

@ -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;
/**