diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2021-12-02 11:30:10 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2021-12-06 14:26:26 +0100 |
commit | ab3a1d5706a5cc0c7f00b5d5ab47d493ffe68790 (patch) | |
tree | 8d81b02883455bf42389122ae196e25a5e40fc80 /lib/public | |
parent | d53722636830eb8b5abd3215afa3f4ea07ce65d2 (diff) | |
download | nextcloud-server-ab3a1d5706a5cc0c7f00b5d5ab47d493ffe68790.tar.gz nextcloud-server-ab3a1d5706a5cc0c7f00b5d5ab47d493ffe68790.zip |
Fix typing problems in OC_Image
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
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 9d2b31e0e28..659cd24720d 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|\GdImage Returns the image resource in any. + * @return false|resource|\GdImage Returns the image resource if any * @since 8.1.0 */ public function resource(); |