summaryrefslogtreecommitdiffstats
path: root/lib/Http/TextResponse.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Http/TextResponse.php')
-rw-r--r--lib/Http/TextResponse.php23
1 files changed, 14 insertions, 9 deletions
diff --git a/lib/Http/TextResponse.php b/lib/Http/TextResponse.php
index a8ac0ea24..af5c84edb 100644
--- a/lib/Http/TextResponse.php
+++ b/lib/Http/TextResponse.php
@@ -5,10 +5,10 @@
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Alessandro Cosentino 2012
- * @copyright Bernhard Posselt 2012, 2014
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright 2012 Alessandro Cosentino
+ * @copyright 2012-2014 Bernhard Posselt
*/
namespace OCA\News\Http;
@@ -18,17 +18,20 @@ use \OCP\AppFramework\Http\Response;
/**
* Just outputs text to the browser
*/
-class TextResponse extends Response {
+class TextResponse extends Response
+{
private $content;
/**
* Creates a response that just outputs text
- * @param string $content the content that should be written into the file
+ *
+ * @param string $content the content that should be written into the file
* @param string $contentType the mimetype. text/ is added automatically so
- * only plain or html can be added to get text/plain or text/html
+ * only plain or html can be added to get text/plain or text/html
*/
- public function __construct($content, $contentType='plain'){
+ public function __construct($content, $contentType='plain')
+ {
$this->content = $content;
$this->addHeader('Content-type', 'text/' . $contentType);
}
@@ -36,9 +39,11 @@ class TextResponse extends Response {
/**
* Simply sets the headers and returns the file contents
+ *
* @return string the file contents
*/
- public function render(){
+ public function render()
+ {
return $this->content;
}