Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Posselt <Raydiation@users.noreply.github.com>2014-05-11 15:59:48 +0400
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-11 19:54:09 +0400
commit3e58a767ad5c4beec258bdb06efa93b99bd77648 (patch)
tree45ecd7ecc237754c2ef0f1cd8b53315121c6e2ec /lib/private/appframework
parentfcb1aa36f0f66cbc3a11a6443ba0feab35402285 (diff)
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) {