2013-08-22 23:04:06 -04:00
|
|
|
<?php
|
2024-05-23 03:26:56 -04:00
|
|
|
|
2013-08-22 23:04:06 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-08-22 23:04:06 -04:00
|
|
|
*/
|
|
|
|
|
namespace OC\Search\Result;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A found folder
|
2020-06-22 04:57:40 -04:00
|
|
|
* @deprecated 20.0.0
|
2013-08-22 23:04:06 -04:00
|
|
|
*/
|
2014-06-05 13:35:24 -04:00
|
|
|
class Folder extends File {
|
2013-08-26 08:12:06 -04:00
|
|
|
/**
|
|
|
|
|
* Type name; translated in templates
|
2020-04-09 10:09:23 -04:00
|
|
|
* @var string
|
2020-06-22 04:57:40 -04:00
|
|
|
* @deprecated 20.0.0
|
2013-08-26 08:12:06 -04:00
|
|
|
*/
|
|
|
|
|
public $type = 'folder';
|
|
|
|
|
}
|