fix(IStorage): Use correct return type for stat

Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
provokateurin 2026-02-12 15:11:46 +01:00
parent 2d486c5629
commit 7ceddb3ffb
No known key found for this signature in database

View file

@ -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<int|string, mixed>|false
* @since 9.0.0
*/
public function stat(string $path);