diff options
author | provokateurin <kate@provokateurin.de> | 2024-09-02 10:15:10 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-09-02 14:57:17 +0200 |
commit | 031166c1771cff50f4069098031a94a8e8da35c5 (patch) | |
tree | e1579022c2330a9b206e26247aac1fa86302d7de /lib/public/Image.php | |
parent | 3973a8f722c4acf5da82a611ee50f04e19627727 (diff) | |
download | nextcloud-server-031166c1771cff50f4069098031a94a8e8da35c5.tar.gz nextcloud-server-031166c1771cff50f4069098031a94a8e8da35c5.zip |
fix(OCP): Fix Image interface
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/public/Image.php')
-rw-r--r-- | lib/public/Image.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/public/Image.php b/lib/public/Image.php index a9aab778207..84d07d6a4b4 100644 --- a/lib/public/Image.php +++ b/lib/public/Image.php @@ -14,5 +14,11 @@ namespace OCP; * This class provides functions to handle images * @since 6.0.0 */ -class Image extends \OC\Image { +class Image extends \OC\Image implements \OCP\IImage { + /** + * @since 31.0.0 + */ + public function __construct() { + parent::__construct(); + } } |