nextcloud/lib/private/Search/Result/Image.php

26 lines
448 B
PHP
Raw Normal View History

2013-09-06 17:42:21 -04:00
<?php
2013-09-06 17:42:21 -04:00
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2013-09-06 17:42:21 -04:00
*/
namespace OC\Search\Result;
/**
* A found image file
* @deprecated 20.0.0
2013-09-06 17:42:21 -04:00
*/
2014-06-05 13:35:24 -04:00
class Image extends File {
2013-09-06 17:42:21 -04:00
/**
* Type name; translated in templates
* @var string
* @deprecated 20.0.0
2013-09-06 17:42:21 -04:00
*/
public $type = 'image';
2013-09-06 17:42:21 -04:00
/**
* @TODO add EXIF information
*/
}