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

22 lines
404 B
PHP
Raw Normal View History

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OC\Search\Result;
/**
* A found folder
* @deprecated 20.0.0
*/
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
* @var string
* @deprecated 20.0.0
2013-08-26 08:12:06 -04:00
*/
public $type = 'folder';
}