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:
authorRobin McCorkell <rmccorkell@karoshi.org.uk>2014-05-11 21:05:28 +0400
committerRobin McCorkell <rmccorkell@karoshi.org.uk>2014-05-13 22:08:14 +0400
commitb653ad164b83afbc07d7a82d2e4461dace28ba6a (patch)
treee1923c2b5116f0f8a242491f949d56db63288e1a /lib/private/request.php
parentf5bc680f9c725c0aea166f3fc3eee8e0bcf5427c (diff)
Replace @returns with @return, in /lib
Diffstat (limited to 'lib/private/request.php')
-rwxr-xr-xlib/private/request.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/private/request.php b/lib/private/request.php
index 90f7488eea5..cf9a316b851 100755
--- a/lib/private/request.php
+++ b/lib/private/request.php
@@ -18,7 +18,7 @@ class OC_Request {
/**
* @brief Check overwrite condition
* @param string $type
- * @returns bool
+ * @return bool
*/
private static function isOverwriteCondition($type = '') {
$regex = '/' . OC_Config::getValue('overwritecondaddr', '') . '/';
@@ -49,7 +49,7 @@ class OC_Request {
/**
* @brief Returns the unverified server host from the headers without checking
* whether it is a trusted domain
- * @returns string the server host
+ * @return string the server host
*
* Returns the server host, even if the website uses one or more
* reverse proxies
@@ -89,7 +89,7 @@ class OC_Request {
/**
* @brief Returns the server host from the headers, or the first configured
* trusted domain if the host isn't in the trusted list
- * @returns string the server host
+ * @return string the server host
*
* Returns the server host, even if the website uses one or more
* reverse proxies
@@ -121,7 +121,7 @@ class OC_Request {
/**
* @brief Returns the server protocol
- * @returns string the server protocol
+ * @return string the server protocol
*
* Returns the server protocol. It respects reverse proxy servers and load balancers
*/
@@ -143,7 +143,7 @@ class OC_Request {
/**
* @brief Returns the request uri
- * @returns string the request uri
+ * @return string the request uri
*
* Returns the request uri, even if the website uses one or more
* reverse proxies