Skip to content
Snippets Groups Projects
Commit 4005c033 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

give creation datetime setter and getter a more meaningful and less misleading name

parent d43abd0b
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment