summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-07-01 16:13:33 +0200
committerRobin Appelman <icewind@owncloud.com>2015-07-01 16:13:33 +0200
commit57945dbc4b0144bdebeda5cf15a168556118e9e3 (patch)
treead5dedb668d0e26bcbb8ea4a0ba83820e5295e7d /lib
parent207ce35ee99e72682b505d3f9d05ab61a6aa9524 (diff)
downloadnextcloud-server-57945dbc4b0144bdebeda5cf15a168556118e9e3.tar.gz
nextcloud-server-57945dbc4b0144bdebeda5cf15a168556118e9e3.zip
fix typehinting
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/mount/manager.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/private/files/mount/manager.php b/lib/private/files/mount/manager.php
index e57794d5aef..d5bd4d7ddf4 100644
--- a/lib/private/files/mount/manager.php
+++ b/lib/private/files/mount/manager.php
@@ -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;
}