From 4005c0337b41c222cbc94ba4f7a34e8da61a38d0 Mon Sep 17 00:00:00 2001
From: Arthur Schiwon <blizzz@owncloud.com>
Date: Mon, 23 Nov 2015 17:29:44 +0100
Subject: [PATCH] give creation datetime setter and getter a more meaningful
 and less misleading name

---
 lib/public/comments/icomment.php | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/public/comments/icomment.php b/lib/public/comments/icomment.php
index 34adf5983f..3bc15c800f 100644
--- a/lib/public/comments/icomment.php
+++ b/lib/public/comments/icomment.php
@@ -125,23 +125,23 @@ interface IComment {
 	public function setActor($actorType, $actorId);
 
 	/**
-	 * returns the unix timestamp of the comment.
+	 * returns the creation date of the comment.
 	 *
-	 * If not explicitely set, it shall default to the time of initialization.
+	 * If not explicitly set, it shall default to the time of initialization.
 	 *
 	 * @return \DateTime
 	 * @since 9.0.0
 	 */
-	public function getTimestamp();
+	public function getCreationDateTime();
 
 	/**
-	 * sets the timestamp of the comment and returns itself
+	 * sets the creation date of the comment and returns itself
 	 *
 	 * @param \DateTime $timestamp
 	 * @return IComment
 	 * @since 9.0.0
 	 */
-	public function setTimestamp(\DateTime $timestamp);
+	public function setCreationDateTime(\DateTime $timestamp);
 
 	/**
 	 * returns the timestamp of the most recent child
-- 
GitLab