diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 13:53:40 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 13:54:22 +0200 |
commit | afbd9c4e6ed834e713039f2cff88ba3eec03dadb (patch) | |
tree | 7d8721cf8fc0329d6b750db63798de67a162b090 /lib/public/App.php | |
parent | 19e97e86c69ab128191439d6a17dacb5a630cf98 (diff) | |
download | nextcloud-server-afbd9c4e6ed834e713039f2cff88ba3eec03dadb.tar.gz nextcloud-server-afbd9c4e6ed834e713039f2cff88ba3eec03dadb.zip |
Unify function spacing to PSR2 recommendation
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/public/App.php')
-rw-r--r-- | lib/public/App.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/public/App.php b/lib/public/App.php index cdf66522d41..7d55729c473 100644 --- a/lib/public/App.php +++ b/lib/public/App.php @@ -56,7 +56,7 @@ class App { * @since 4.0.0 * @deprecated 14.0.0 Use settings section in appinfo.xml to register personal admin sections */ - public static function registerPersonal( $app, $page ) { + public static function registerPersonal($app, $page) { \OC_App::registerPersonal( $app, $page ); } @@ -68,7 +68,7 @@ class App { * @since 4.0.0 * @deprecated 14.0.0 Use settings section in appinfo.xml to register admin sections */ - public static function registerAdmin( $app, $page ) { + public static function registerAdmin($app, $page) { \OC_App::registerAdmin( $app, $page ); } @@ -80,7 +80,7 @@ class App { * @deprecated 14.0.0 ise \OC::$server->getAppManager()->getAppInfo($appId) * @since 4.0.0 */ - public static function getAppInfo( $app, $path=false ) { + public static function getAppInfo($app, $path=false) { return \OC_App::getAppInfo( $app, $path); } @@ -93,7 +93,7 @@ class App { * @since 4.0.0 * @deprecated 13.0.0 use \OC::$server->getAppManager()->isEnabledForUser($appId) */ - public static function isEnabled( $app ) { + public static function isEnabled($app) { return \OC::$server->getAppManager()->isEnabledForUser( $app ); } @@ -104,7 +104,7 @@ class App { * @since 4.0.0 * @deprecated 14.0.0 use \OC::$server->getAppManager()->getAppVersion($appId) */ - public static function getAppVersion( $app ) { + public static function getAppVersion($app) { return \OC::$server->getAppManager()->getAppVersion($app); } } |