diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-13 12:21:04 +0200 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-13 19:09:14 +0100 |
commit | 7853bc4cacee0e5361fd25ea0c2a67cf7a526c91 (patch) | |
tree | 014db14216867e5130832f82b51469fa186147d8 /lib | |
parent | 147007bdd8e2f60d2a39685623f34130c87edc0c (diff) | |
download | nextcloud-server-7853bc4cacee0e5361fd25ea0c2a67cf7a526c91.tar.gz nextcloud-server-7853bc4cacee0e5361fd25ea0c2a67cf7a526c91.zip |
adding PHPDoc
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/share/mailnotifications.php | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/lib/private/share/mailnotifications.php b/lib/private/share/mailnotifications.php index 0cd36e97d54..ca0dff6562d 100644 --- a/lib/private/share/mailnotifications.php +++ b/lib/private/share/mailnotifications.php @@ -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; /** |