summaryrefslogtreecommitdiffstats
path: root/apps/encryption/lib
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-03-30 10:43:37 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-07 13:30:28 +0200
commit2331298380690c9326b6d189c96e0201d6b0b9e1 (patch)
tree9c47eead6d399861b431189299ffe67aa54fba01 /apps/encryption/lib
parent937efe856d5f65706f2074a45d781d5944ba2494 (diff)
downloadnextcloud-server-2331298380690c9326b6d189c96e0201d6b0b9e1.tar.gz
nextcloud-server-2331298380690c9326b6d189c96e0201d6b0b9e1.zip
fix parameter declaration and class initialisation
Diffstat (limited to 'apps/encryption/lib')
-rw-r--r--apps/encryption/lib/crypto/encryption.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/encryption/lib/crypto/encryption.php b/apps/encryption/lib/crypto/encryption.php
index 8c00077729e..3c93f759407 100644
--- a/apps/encryption/lib/crypto/encryption.php
+++ b/apps/encryption/lib/crypto/encryption.php
@@ -46,16 +46,16 @@ class Encryption implements IEncryptionModule {
/** @var boolean */
private $isWriteOperation;
- /** @var \OC\Encryption\Util */
+ /** @var \OCA\Encryption\Util */
private $util;
/**
*
* @param \OCA\Encryption\Crypto\Crypt $crypt
* @param KeyManager $keymanager
- * @param \OC\Encryption\Util $util
+ * @param \OCA\Encryption\Util $util
*/
- public function __construct(Crypt $crypt, KeyManager $keymanager, \OC\Encryption\Util $util) {
+ public function __construct(Crypt $crypt, KeyManager $keymanager, \OCA\Encryption\Util $util) {
$this->crypt = $crypt;
$this->keymanager = $keymanager;
$this->util = $util;