aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Image.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Image.php')
-rw-r--r--lib/public/Image.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/public/Image.php b/lib/public/Image.php
index e2565cca9a4..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();
+ }
}