diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-03-13 18:59:16 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-04-03 10:52:34 +0200 |
commit | ea05544213b6d472338684e9c7bae66f68453c58 (patch) | |
tree | 809724b54187a4d21fbe967b38b10fc4cb4ca38a /lib/public/Files/SimpleFS/ISimpleFile.php | |
parent | f974281ac9a086004c7e971f3585ed8aa21d194d (diff) | |
download | nextcloud-server-ea05544213b6d472338684e9c7bae66f68453c58.tar.gz nextcloud-server-ea05544213b6d472338684e9c7bae66f68453c58.zip |
Fix return type of methods returning false on error
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public/Files/SimpleFS/ISimpleFile.php')
-rw-r--r-- | lib/public/Files/SimpleFS/ISimpleFile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Files/SimpleFS/ISimpleFile.php b/lib/public/Files/SimpleFS/ISimpleFile.php index e55261497be..8afc3108836 100644 --- a/lib/public/Files/SimpleFS/ISimpleFile.php +++ b/lib/public/Files/SimpleFS/ISimpleFile.php @@ -107,7 +107,7 @@ interface ISimpleFile { /** * Open the file as stream for reading, resulting resource can be operated as stream like the result from php's own fopen * - * @return resource + * @return resource|false * @throws \OCP\Files\NotPermittedException * @since 14.0.0 */ |