diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-08-27 16:18:42 +0200 |
---|---|---|
committer | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2024-08-29 17:06:32 +0200 |
commit | 47d2cb7479b416bfb7125ae434fc1d280f1312ce (patch) | |
tree | cab0cd0a0c58e1d5d2725fbe311f06469b7c272f /lib/public | |
parent | 6d04ad829b2814090301b0101dc10fa0617dd783 (diff) | |
download | nextcloud-server-47d2cb7479b416bfb7125ae434fc1d280f1312ce.tar.gz nextcloud-server-47d2cb7479b416bfb7125ae434fc1d280f1312ce.zip |
fix: Move \OC_Image to \OC\Image with the other internal classes
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Image.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Image.php b/lib/public/Image.php index e2565cca9a4..a9aab778207 100644 --- a/lib/public/Image.php +++ b/lib/public/Image.php @@ -14,5 +14,5 @@ namespace OCP; * This class provides functions to handle images * @since 6.0.0 */ -class Image extends \OC_Image { +class Image extends \OC\Image { } |