Fix missing types on doc block and deduplicate the method name

This commit is contained in:
Joas Schilling 2015-05-06 12:14:18 +02:00
parent e4829a2358
commit aea734aaf1
2 changed files with 5 additions and 5 deletions

View file

@ -413,10 +413,10 @@ class Encryption extends Wrapper {
* copy file between two storages
*
* @param \OCP\Files\Storage $sourceStorage
* @param $sourceInternalPath
* @param $targetInternalPath
* @param $preserveMtime
* @param $isRename
* @param string $sourceInternalPath
* @param string $targetInternalPath
* @param bool $preserveMtime
* @param bool $isRename
* @return bool
*/
private function copyBetweenStorage(\OCP\Files\Storage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime, $isRename) {

View file

@ -199,7 +199,7 @@ class Encryption extends \Test\Files\Storage\Storage {
* @param boolean $copyKeysReturn
* @param boolean $shouldUpdate
*/
public function testCopy($source,
public function testCopyEncryption($source,
$target,
$encryptionEnabled,
$copyKeysReturn,