diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-06 16:28:42 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-06 16:28:42 +0100 |
commit | 5fc4c91a76a266fd8e6c19fe85ca3240444d768d (patch) | |
tree | 9ec773585e5052ecda3caec7dac936b02de13e3a /lib/private/Preview | |
parent | ed81337461c8c7763eb07a489fc980491dc9c046 (diff) | |
download | nextcloud-server-5fc4c91a76a266fd8e6c19fe85ca3240444d768d.tar.gz nextcloud-server-5fc4c91a76a266fd8e6c19fe85ca3240444d768d.zip |
Fix mismatching doc block parameter types
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/Preview')
-rw-r--r-- | lib/private/Preview/GeneratorHelper.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Preview/GeneratorHelper.php b/lib/private/Preview/GeneratorHelper.php index 0e271947b56..470cad2d0a6 100644 --- a/lib/private/Preview/GeneratorHelper.php +++ b/lib/private/Preview/GeneratorHelper.php @@ -52,10 +52,11 @@ class GeneratorHelper { } /** - * @param IProvider $provider + * @param IProviderV2 $provider * @param File $file * @param int $maxWidth * @param int $maxHeight + * * @return bool|IImage */ public function getThumbnail(IProviderV2 $provider, File $file, $maxWidth, $maxHeight) { |