diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-19 20:18:32 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-19 20:18:32 +0200 |
commit | b6d2d6329d99c47fa8a01a7a8db7f8f2de6b9f74 (patch) | |
tree | f517f66492d75a06655ed9906383be4930fd303b /lib/private/response.php | |
parent | 090d12705011d74f981699d3ab5e8f02479c8eaf (diff) | |
parent | dc36d3095314db8d88c2ec1005d99af595c119da (diff) | |
download | nextcloud-server-b6d2d6329d99c47fa8a01a7a8db7f8f2de6b9f74.tar.gz nextcloud-server-b6d2d6329d99c47fa8a01a7a8db7f8f2de6b9f74.zip |
Merge pull request #8639 from owncloud/drop-brief
Remove all occurences of @brief and @returns from PHPDoc
Diffstat (limited to 'lib/private/response.php')
-rw-r--r-- | lib/private/response.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/private/response.php b/lib/private/response.php index f976925fb2e..e8064c8588f 100644 --- a/lib/private/response.php +++ b/lib/private/response.php @@ -15,7 +15,7 @@ class OC_Response { const STATUS_SERVICE_UNAVAILABLE = 503; /** - * @brief Enable response caching by sending correct HTTP headers + * Enable response caching by sending correct HTTP headers * @param integer $cache_time time to cache the response * >0 cache time in seconds * 0 and <0 enable default browser caching @@ -41,7 +41,7 @@ class OC_Response { } /** - * @brief disable browser caching + * disable browser caching * @see enableCaching with cache_time = 0 */ static public function disableCaching() { @@ -49,7 +49,7 @@ class OC_Response { } /** - * @brief Set response status + * Set response status * @param int $status a HTTP status code, see also the STATUS constants */ static public function setStatus($status) { @@ -83,7 +83,7 @@ class OC_Response { } /** - * @brief Send redirect response + * Send redirect response * @param string $location to redirect to */ static public function redirect($location) { @@ -92,7 +92,7 @@ class OC_Response { } /** - * @brief Set reponse expire time + * Set reponse expire time * @param string|DateTime $expires date-time when the response expires * string for DateInterval from now * DateTime object when to expire response @@ -170,7 +170,7 @@ class OC_Response { } /** - * @brief Send file as response, checking and setting caching headers + * Send file as response, checking and setting caching headers * @param string $filepath of file to send */ static public function sendFile($filepath) { |