aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/app.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-01-06 23:57:27 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-01-06 23:57:27 +0100
commit1093cdd8238b1f120a56c63727e9b48f72afb6e2 (patch)
treec23b4dfda6f390a4089c14de572883398e14f0b4 /lib/public/app.php
parent19edb29cc397064d1a436d841ec87f07e8af12ee (diff)
downloadnextcloud-server-1093cdd8238b1f120a56c63727e9b48f72afb6e2.tar.gz
nextcloud-server-1093cdd8238b1f120a56c63727e9b48f72afb6e2.zip
fixing returns
Diffstat (limited to 'lib/public/app.php')
-rw-r--r--lib/public/app.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/public/app.php b/lib/public/app.php
index 809a656f17f..a1ecf524cc8 100644
--- a/lib/public/app.php
+++ b/lib/public/app.php
@@ -89,7 +89,7 @@ class App {
* @param $page string page to be included
*/
public static function registerPersonal( $app, $page ) {
- return \OC_App::registerPersonal( $app, $page );
+ \OC_App::registerPersonal( $app, $page );
}
/**
@@ -98,7 +98,7 @@ class App {
* @param $page string page to be included
*/
public static function registerAdmin( $app, $page ) {
- return \OC_App::registerAdmin( $app, $page );
+ \OC_App::registerAdmin( $app, $page );
}
/**
@@ -125,10 +125,9 @@ class App {
/**
* @brief Check if the app is enabled, redirects to home if not
* @param $app app
- * @returns true/false
*/
public static function checkAppEnabled( $app ) {
- return \OC_Util::checkAppEnabled( $app );
+ \OC_Util::checkAppEnabled( $app );
}
/**