diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-08-12 19:53:57 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-08-12 19:53:57 +0200 |
commit | c6e62f5e4c9616e16198a3cb73af11e700b0f0c7 (patch) | |
tree | 8aa5d05f41e6e0c358516a8261065ef7752896ac /tests/lib | |
parent | 6325cf6ecb70f46099fd692c45672fb2afdbb692 (diff) | |
download | nextcloud-server-c6e62f5e4c9616e16198a3cb73af11e700b0f0c7.tar.gz nextcloud-server-c6e62f5e4c9616e16198a3cb73af11e700b0f0c7.zip |
fix namespacess for scanner test
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/files/utils/scanner.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/files/utils/scanner.php b/tests/lib/files/utils/scanner.php index a021d215ae5..3ddae65455a 100644 --- a/tests/lib/files/utils/scanner.php +++ b/tests/lib/files/utils/scanner.php @@ -8,17 +8,17 @@ namespace Test\Files\Utils; -use OC\Files\Mount\Mount; +use OC\Files\Mount; use OC\Files\Storage\Temporary; class TestScanner extends \OC\Files\Utils\Scanner { /** - * @var \OC\Files\Mount\Mount[] $mounts + * @var \OC\Files\Mount[] $mounts */ private $mounts = array(); /** - * @param \OC\Files\Mount\Mount $mount + * @param \OC\Files\Mount $mount */ public function addMount($mount) { $this->mounts[] = $mount; |