diff options
author | Vitor Mattos <vitor@php.rio> | 2022-06-13 13:35:34 -0300 |
---|---|---|
committer | Vitor Mattos <vitor@php.rio> | 2022-06-13 13:35:34 -0300 |
commit | 45cdb36d5c96b9beb839881b6eee42aea6c54d79 (patch) | |
tree | 26659741c5d74f6152db6daba28c7542c52fa3d6 /lib/public/Comments/IComment.php | |
parent | 4f230877e92571a4ba5708ad6ad0e2bf0d620e74 (diff) | |
download | nextcloud-server-45cdb36d5c96b9beb839881b6eee42aea6c54d79.tar.gz nextcloud-server-45cdb36d5c96b9beb839881b6eee42aea6c54d79.zip |
Remove unecessary row and make compatible with db schema
Signed-off-by: Vitor Mattos <vitor@php.rio>
Diffstat (limited to 'lib/public/Comments/IComment.php')
-rw-r--r-- | lib/public/Comments/IComment.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/Comments/IComment.php b/lib/public/Comments/IComment.php index 8465eaf49f4..279fc6c907e 100644 --- a/lib/public/Comments/IComment.php +++ b/lib/public/Comments/IComment.php @@ -230,11 +230,11 @@ interface IComment { /** * sets the date of the most recent child * - * @param \DateTime $dateTime + * @param \DateTime|null $dateTime * @return IComment * @since 9.0.0 */ - public function setLatestChildDateTime(\DateTime $dateTime); + public function setLatestChildDateTime(\DateTime $dateTime = null); /** * returns the object type the comment is attached to |