diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-07-11 14:27:43 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-05 16:53:28 +0200 |
commit | 676fa459d79199d4d35edc971c663308428eef65 (patch) | |
tree | 0533b0b6ae548c89f453298e0fd78e91acb36232 /lib/private/appframework/utility | |
parent | 244d4e1399122a6e70120a2ceb7ba25c001b51ba (diff) | |
download | nextcloud-server-676fa459d79199d4d35edc971c663308428eef65.tar.gz nextcloud-server-676fa459d79199d4d35edc971c663308428eef65.zip |
Minor fixes
* instanceof \OC\Files\View
* fix misplaced paranthesis
* remove misplaced character in comment
Diffstat (limited to 'lib/private/appframework/utility')
-rw-r--r-- | lib/private/appframework/utility/controllermethodreflector.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/appframework/utility/controllermethodreflector.php b/lib/private/appframework/utility/controllermethodreflector.php index d5cf2f52eb2..c49dd80091e 100644 --- a/lib/private/appframework/utility/controllermethodreflector.php +++ b/lib/private/appframework/utility/controllermethodreflector.php @@ -62,6 +62,7 @@ class ControllerMethodReflector { } else { $this->types = array_combine($matches['var'], $matches['type']); } + // get method parameters foreach ($reflection->getParameters() as $param) { if($param->isOptional()) { |