diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-25 23:00:36 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-25 23:00:36 +0100 |
commit | 1816f43722fb0427f980297c18bdee4faf88c603 (patch) | |
tree | 722066e9e37933b3503f8251842ee90f5e65ae1d /lib/public | |
parent | ed97d872af3734b8f4d273a8f6aa0c6693d22434 (diff) | |
parent | 4900ad911923f829dd89dd5db6162a061cea6c9c (diff) | |
download | nextcloud-server-1816f43722fb0427f980297c18bdee4faf88c603.tar.gz nextcloud-server-1816f43722fb0427f980297c18bdee4faf88c603.zip |
Merge pull request #7864 from owncloud/routing-performance
Routing performance
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/route/irouter.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/public/route/irouter.php b/lib/public/route/irouter.php index d6b0750ba6f..125cd29e81b 100644 --- a/lib/public/route/irouter.php +++ b/lib/public/route/irouter.php @@ -10,8 +10,6 @@ namespace OCP\Route; interface IRouter { - public function __construct(); - /** * Get the files to load the routes from * @@ -24,7 +22,7 @@ interface IRouter { /** * loads the api routes */ - public function loadRoutes(); + public function loadRoutes($app = null); /** * Sets the collection to use for adding routes |