mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
1f7e2ba599
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
35 lines
657 B
PHP
35 lines
657 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
namespace Test;
|
|
|
|
use OC\Files\Mount;
|
|
|
|
/**
|
|
* Test moveable mount for mocking
|
|
*/
|
|
class TestMoveableMountPoint extends Mount\MountPoint implements Mount\MoveableMount {
|
|
/**
|
|
* Move the mount point to $target
|
|
*
|
|
* @param string $target the target mount point
|
|
* @return bool
|
|
*/
|
|
public function moveMount($target) {
|
|
$this->setMountPoint($target);
|
|
}
|
|
|
|
/**
|
|
* Remove the mount points
|
|
*
|
|
* @return mixed
|
|
* @return bool
|
|
*/
|
|
public function removeMount() {
|
|
}
|
|
}
|