]> source.dussan.org Git - nextcloud-server.git/commitdiff
adding PHPDoc
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 13 May 2014 10:21:04 +0000 (12:21 +0200)
committerRobin McCorkell <rmccorkell@karoshi.org.uk>
Tue, 13 May 2014 18:09:14 +0000 (19:09 +0100)
lib/private/share/mailnotifications.php

index 0cd36e97d54c1c387f67489fafde98bc86b50ba0..ca0dff6562d17e46d0f2509b05eb158c6a448bcc 100644 (file)
 
 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;
 
        /**