From 7ceddb3ffb2837f670e4becb9b6f464cb044f04e Mon Sep 17 00:00:00 2001 From: provokateurin Date: Thu, 12 Feb 2026 15:11:46 +0100 Subject: [PATCH] fix(IStorage): Use correct return type for stat Signed-off-by: provokateurin --- lib/public/Files/Storage/IStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/Files/Storage/IStorage.php b/lib/public/Files/Storage/IStorage.php index f09f899d4f2..ab88404b70c 100644 --- a/lib/public/Files/Storage/IStorage.php +++ b/lib/public/Files/Storage/IStorage.php @@ -81,7 +81,7 @@ interface IStorage { * see https://www.php.net/manual/en/function.stat.php * only the following keys are required in the result: size and mtime * - * @return array|false + * @return array|false * @since 9.0.0 */ public function stat(string $path);