diff options
author | Bernhard Posselt <Raydiation@users.noreply.github.com> | 2014-05-11 13:59:48 +0200 |
---|---|---|
committer | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-05-11 17:54:09 +0200 |
commit | 3e58a767ad5c4beec258bdb06efa93b99bd77648 (patch) | |
tree | 45ecd7ecc237754c2ef0f1cd8b53315121c6e2ec /lib/private/appframework | |
parent | fcb1aa36f0f66cbc3a11a6443ba0feab35402285 (diff) | |
download | nextcloud-server-3e58a767ad5c4beec258bdb06efa93b99bd77648.tar.gz nextcloud-server-3e58a767ad5c4beec258bdb06efa93b99bd77648.zip |
Fix method signature
Diffstat (limited to 'lib/private/appframework')
-rw-r--r-- | lib/private/appframework/http/dispatcher.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/appframework/http/dispatcher.php b/lib/private/appframework/http/dispatcher.php index 4fe48355272..39ca3398c66 100644 --- a/lib/private/appframework/http/dispatcher.php +++ b/lib/private/appframework/http/dispatcher.php @@ -116,6 +116,8 @@ class Dispatcher { /** * Uses the reflected parameters, types and request parameters to execute * the controller + * @param Controller $controller the controller to be executed + * @param string $methodName the method on the controller that should be executed * @return Response */ private function executeController($controller, $methodName) { |