summaryrefslogtreecommitdiffstats
path: root/lib/private/appframework
diff options
context:
space:
mode:
authorBernhard Posselt <Raydiation@users.noreply.github.com>2014-05-11 13:59:48 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-11 17:54:09 +0200
commit3e58a767ad5c4beec258bdb06efa93b99bd77648 (patch)
tree45ecd7ecc237754c2ef0f1cd8b53315121c6e2ec /lib/private/appframework
parentfcb1aa36f0f66cbc3a11a6443ba0feab35402285 (diff)
downloadnextcloud-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.php2
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) {