mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix typehinting
This commit is contained in:
parent
207ce35ee9
commit
57945dbc4b
1 changed files with 3 additions and 2 deletions
|
|
@ -26,6 +26,7 @@ namespace OC\Files\Mount;
|
|||
|
||||
use \OC\Files\Filesystem;
|
||||
use OCP\Files\Mount\IMountManager;
|
||||
use OCP\Files\Mount\IMountPoint;
|
||||
|
||||
class Manager implements IMountManager {
|
||||
/**
|
||||
|
|
@ -34,9 +35,9 @@ class Manager implements IMountManager {
|
|||
private $mounts = array();
|
||||
|
||||
/**
|
||||
* @param MountPoint $mount
|
||||
* @param IMountPoint $mount
|
||||
*/
|
||||
public function addMount(MountPoint $mount) {
|
||||
public function addMount(IMountPoint $mount) {
|
||||
$this->mounts[$mount->getMountPoint()] = $mount;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue