diff options
author | Varun Patil <varunpatil@ucla.edu> | 2023-10-18 23:21:17 -0700 |
---|---|---|
committer | Varun Patil <varunpatil@ucla.edu> | 2023-10-18 23:23:41 -0700 |
commit | c008464a2a837c456253aa32009d50bbed223375 (patch) | |
tree | c285f3aba017dfdfef3450d39a66e9e3e9f59b89 /lib/public/Share | |
parent | ff76e258c882861b265d9e3ff8324d7946da99f7 (diff) | |
download | nextcloud-server-c008464a2a837c456253aa32009d50bbed223375.tar.gz nextcloud-server-c008464a2a837c456253aa32009d50bbed223375.zip |
Fix return type of IShare::getExpirationDate
Signed-off-by: Varun Patil <varunpatil@ucla.edu>
Diffstat (limited to 'lib/public/Share')
-rw-r--r-- | lib/public/Share/IShare.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Share/IShare.php b/lib/public/Share/IShare.php index 40548c6c73d..e5a943b0bac 100644 --- a/lib/public/Share/IShare.php +++ b/lib/public/Share/IShare.php @@ -394,7 +394,7 @@ interface IShare { /** * Get the expiration date * - * @return \DateTime + * @return null|\DateTime * @since 9.0.0 */ public function getExpirationDate(); |