fix typehinting

This commit is contained in:
Robin Appelman 2015-07-01 16:13:33 +02:00
parent 207ce35ee9
commit 57945dbc4b
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}