diff options
Diffstat (limited to 'lib/public/Files/Storage.php')
-rw-r--r-- | lib/public/Files/Storage.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/Files/Storage.php b/lib/public/Files/Storage.php index c91d47bdcdf..f5b0775849d 100644 --- a/lib/public/Files/Storage.php +++ b/lib/public/Files/Storage.php @@ -88,7 +88,7 @@ interface Storage extends IStorage { * see https://www.php.net/manual/en/function.opendir.php * * @param string $path - * @return resource|bool + * @return resource|false * @since 6.0.0 */ public function opendir($path); @@ -326,7 +326,7 @@ interface Storage extends IStorage { * The local version of the file can be temporary and doesn't have to be persistent across requests * * @param string $path - * @return string|bool + * @return string|false * @since 6.0.0 */ public function getLocalFile($path); @@ -348,7 +348,7 @@ interface Storage extends IStorage { * get the ETag for a file or folder * * @param string $path - * @return string|bool + * @return string|false * @since 6.0.0 */ public function getETag($path); |