Skip to content

Commit

Permalink
fix typehinting
Browse files Browse the repository at this point in the history
  • Loading branch information
icewind1991 committed Jul 1, 2015
1 parent 207ce35 commit 57945db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/private/files/mount/manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

use \OC\Files\Filesystem;
use OCP\Files\Mount\IMountManager;
use OCP\Files\Mount\IMountPoint;

class Manager implements IMountManager {
/**
Expand All @@ -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;
}

Expand Down

0 comments on commit 57945db

Please sign in to comment.