summaryrefslogtreecommitdiffstats
path: root/apps/encryption/appinfo
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-04-09 10:54:53 +0200
committerLukas Reschke <lukas@owncloud.com>2015-04-09 10:54:53 +0200
commit4ca64194755fb5447885e7d9897c63737ee0d161 (patch)
tree105542dae3c60eb7ac1271fe564fc9e8dea18b82 /apps/encryption/appinfo
parent3aad47c0f0b83f7015d5eccbf4b44f1afaa5d567 (diff)
downloadnextcloud-server-4ca64194755fb5447885e7d9897c63737ee0d161.tar.gz
nextcloud-server-4ca64194755fb5447885e7d9897c63737ee0d161.zip
Fix PHPDoc
Diffstat (limited to 'apps/encryption/appinfo')
-rw-r--r--apps/encryption/appinfo/application.php15
1 files changed, 1 insertions, 14 deletions
diff --git a/apps/encryption/appinfo/application.php b/apps/encryption/appinfo/application.php
index 6f4e22bdd68..34845ecf1e8 100644
--- a/apps/encryption/appinfo/application.php
+++ b/apps/encryption/appinfo/application.php
@@ -3,6 +3,7 @@
* @author Björn Schießle <schiessle@owncloud.com>
* @author Clark Tomlinson <fallen013@gmail.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
+ * @author Lukas Reschke <lukas@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
@@ -49,7 +50,6 @@ class Application extends \OCP\AppFramework\App {
private $config;
/**
- * @param $appName
* @param array $urlParams
*/
public function __construct($urlParams = array()) {
@@ -59,9 +59,6 @@ class Application extends \OCP\AppFramework\App {
$this->registerServices();
}
- /**
- *
- */
public function registerHooks() {
if (!$this->config->getSystemValue('maintenance', false)) {
@@ -89,9 +86,6 @@ class Application extends \OCP\AppFramework\App {
}
}
- /**
- *
- */
public function registerEncryptionModule() {
$container = $this->getContainer();
$container->registerService('EncryptionModule', function (IAppContainer $c) {
@@ -104,9 +98,6 @@ class Application extends \OCP\AppFramework\App {
$this->encryptionManager->registerEncryptionModule($module);
}
- /**
- *
- */
public function registerServices() {
$container = $this->getContainer();
@@ -132,7 +123,6 @@ class Application extends \OCP\AppFramework\App {
);
});
-
$container->registerService('Recovery',
function (IAppContainer $c) {
$server = $c->getServer();
@@ -181,9 +171,6 @@ class Application extends \OCP\AppFramework\App {
}
- /**
- *
- */
public function registerSettings() {
// Register settings scripts
App::registerAdmin('encryption', 'settings/settings-admin');