nextcloud/lib/public/Image.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
462 B
PHP
Raw Normal View History

2013-07-19 05:23:47 -04:00
<?php
2013-07-19 05:23:47 -04:00
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
2013-11-03 07:38:25 -05:00
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal Nextcloud classes
2013-07-19 05:23:47 -04:00
namespace OCP;
/**
* This class provides functions to handle images
* @since 6.0.0
2013-07-19 05:23:47 -04:00
*/
class Image extends \OC_Image {
2013-07-19 05:23:47 -04:00
}