diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-07-08 23:11:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-08 23:11:10 +0200 |
commit | c98e44507dcdc533b74740c9f9325a758db4f330 (patch) | |
tree | 278a1e686d82e5bf54e01962583816f71b3cd38d /lib/public/Comments/IComment.php | |
parent | 927b6d635f3bb8c0c2dc26612b0f3aed6678befe (diff) | |
parent | b9def2f073e43208a16428fcfcbf631a94aefb76 (diff) | |
download | nextcloud-server-c98e44507dcdc533b74740c9f9325a758db4f330.tar.gz nextcloud-server-c98e44507dcdc533b74740c9f9325a758db4f330.zip |
Merge pull request #32865 from nextcloud/bugfix/remove-unecessary-row
Remove unecessary row and make compatible with db schema
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 44d294bb07c..eb696fa5f06 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 |