aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/IStreamImage.php
blob: 5363e0fcbc7940dd7b47ca4a1de361ff88f2dc72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

/**
 * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCP;

/**
 * @since 24.0.0
 */
interface IStreamImage extends IImage {
	/**
	 * @since 24.0.0
	 * @return false|resource Returns the image resource if any
	 */
	public function resource();
}