Image.php 448 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OC\Search\Result;
  8. /**
  9. * A found image file
  10. * @deprecated 20.0.0
  11. */
  12. class Image extends File {
  13. /**
  14. * Type name; translated in templates
  15. * @var string
  16. * @deprecated 20.0.0
  17. */
  18. public $type = 'image';
  19. /**
  20. * @TODO add EXIF information
  21. */
  22. }