IStreamImage.php 336 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP;
  7. /**
  8. * @since 24.0.0
  9. */
  10. interface IStreamImage extends IImage {
  11. /**
  12. * @since 24.0.0
  13. * @return false|resource Returns the image resource if any
  14. */
  15. public function resource();
  16. }