summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-04-01 12:13:49 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-04-01 12:13:49 +0200
commit730efe25a4c386b2d2e4c1d1b0d16a71be7b9f28 (patch)
tree0138e7061b207582fcd163a93493b4afefa951e2 /lib/public
parentefcc2e87ab860c50f7904ac8e98914589a9c097a (diff)
downloadnextcloud-server-730efe25a4c386b2d2e4c1d1b0d16a71be7b9f28.tar.gz
nextcloud-server-730efe25a4c386b2d2e4c1d1b0d16a71be7b9f28.zip
Make scrutinizer happy
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/iconfig.php2
-rw-r--r--lib/public/iservercontainer.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php
index c63ba1a90a6..f28a114a2bb 100644
--- a/lib/public/iconfig.php
+++ b/lib/public/iconfig.php
@@ -133,7 +133,7 @@ interface IConfig {
* @param string $userId the userId of the user that we want to store the value under
* @param string $appName the appName that we stored the value under
* @param string $key the key under which the value is being stored
- * @param string $default the default value to be returned if the value isn't set
+ * @param mixed $default the default value to be returned if the value isn't set
* @return string
*/
public function getUserValue($userId, $appName, $key, $default = '');
diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php
index d7df884adf8..f11a5c0133f 100644
--- a/lib/public/iservercontainer.php
+++ b/lib/public/iservercontainer.php
@@ -59,7 +59,7 @@ interface IServerContainer {
* is returned from this method.
* In case the current execution was not initiated by a web request null is returned
*
- * @return \OCP\IRequest|null
+ * @return \OCP\IRequest
*/
function getRequest();