diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2021-11-02 10:57:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 10:57:08 +0100 |
commit | f90176efce6ea4901ad2f35d50e6bb6d6f35df90 (patch) | |
tree | 02f2d6947ac0b32512bf7ddff37ffc1278a3ea72 /lib/public | |
parent | b15b41d731a34860fe4ada6d5991bdd12fae1246 (diff) | |
parent | 58b6f355227ccb6e3b9e45d9e2ad77c1f6e761c8 (diff) | |
download | nextcloud-server-f90176efce6ea4901ad2f35d50e6bb6d6f35df90.tar.gz nextcloud-server-f90176efce6ea4901ad2f35d50e6bb6d6f35df90.zip |
Merge pull request #29479 from nextcloud/fix/images-php-8.0
Fix image handling for PHP 8.0
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/IImage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/IImage.php b/lib/public/IImage.php index 459553de799..9d2b31e0e28 100644 --- a/lib/public/IImage.php +++ b/lib/public/IImage.php @@ -98,7 +98,7 @@ interface IImage { public function save($filePath = null, $mimeType = null); /** - * @return resource Returns the image resource in any. + * @return resource|\GdImage Returns the image resource in any. * @since 8.1.0 */ public function resource(); |