2018-04-13 08:04:41 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-04-13 08:04:41 -04:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-04-13 08:04:41 -04:00
|
|
|
/**
|
2024-05-27 11:39:07 -04:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-04-13 08:04:41 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCA\DAV\Direct;
|
|
|
|
|
|
|
|
|
|
class Server extends \Sabre\DAV\Server {
|
|
|
|
|
public function __construct($treeOrNode = null) {
|
|
|
|
|
parent::__construct($treeOrNode);
|
|
|
|
|
self::$exposeVersion = false;
|
|
|
|
|
$this->enablePropfindDepthInfinityf = false;
|
|
|
|
|
}
|
|
|
|
|
}
|