Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-08 17:08:58 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-08 17:08:58 +0400
commitc458e785a1612e04b54bb9fbb0f22c0852758fb0 (patch)
treeed921a00501c6a773a91ade6f3dfd8ab2d389973 /apps/files_encryption/tests/crypt.php
parent512f98cac9d4cf2993667e2347ae36c29a0f53e0 (diff)
fixing typos and PHPDoc
Diffstat (limited to 'apps/files_encryption/tests/crypt.php')
-rwxr-xr-xapps/files_encryption/tests/crypt.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php
index b7b16f25dca..2330a45be84 100755
--- a/apps/files_encryption/tests/crypt.php
+++ b/apps/files_encryption/tests/crypt.php
@@ -656,9 +656,10 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
/**
- * @brief ncryption using legacy blowfish method
- * @param data data to encrypt
- * @param passwd password
+ * @brief encryption using legacy blowfish method
+ * @param $data string data to encrypt
+ * @param $passwd string password
+ * @return string
*/
function legacyEncrypt($data, $passwd) {