[Pkg-owncloud-commits] [owncloud] 113/172: adding PHPDoc
David Prévot
taffit at moszumanska.debian.org
Sun May 18 20:09:46 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit 7853bc4cacee0e5361fd25ea0c2a67cf7a526c91
Author: Thomas Müller <thomas.mueller at tmit.eu>
Date: Tue May 13 12:21:04 2014 +0200
adding PHPDoc
---
lib/private/share/mailnotifications.php | 23 +++++++++++++++++++++--
1 file changed, 21 insertions(+), 2 deletions(-)
diff --git a/lib/private/share/mailnotifications.php b/lib/private/share/mailnotifications.php
index 0cd36e9..ca0dff6 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;
/**
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list