summaryrefslogtreecommitdiffstats
path: root/http
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
commit42d69a95f3276a2d6089ca68f635c4e2f6aa7a23 (patch)
tree6a17fd7998f291e6dec1d996c1e7c724b92b8e58 /http
parent0e6598b0734fb927109f745d9c0f3a8605a30ca5 (diff)
convert tabs indention to indention with 4 spaces because of mixing of both variants in code and better readability on github and websites because you cant set the indention width there and 8 spaces will be used for a tab
Diffstat (limited to 'http')
-rw-r--r--http/textdownloadresponse.php44
-rw-r--r--http/textresponse.php42
2 files changed, 43 insertions, 43 deletions
diff --git a/http/textdownloadresponse.php b/http/textdownloadresponse.php
index 7a9d59c7d..9a90e6454 100644
--- a/http/textdownloadresponse.php
+++ b/http/textdownloadresponse.php
@@ -21,28 +21,28 @@ use \OCP\AppFramework\Http\DownloadResponse;
*/
class TextDownloadResponse extends DownloadResponse {
- private $content;
-
- /**
- * Creates a response that prompts the user to download a file which
- * contains the passed string
- * @param string $content the content that should be written into the file
- * @param string $filename the name that the downloaded file should have
- * @param string $contentType the mimetype that the downloaded file should have
- */
- public function __construct($content, $filename, $contentType){
- parent::__construct($filename, $contentType);
- $this->content = $content;
- }
-
-
- /**
- * Simply sets the headers and returns the file contents
- * @return string the file contents
- */
- public function render(){
- return $this->content;
- }
+ private $content;
+
+ /**
+ * Creates a response that prompts the user to download a file which
+ * contains the passed string
+ * @param string $content the content that should be written into the file
+ * @param string $filename the name that the downloaded file should have
+ * @param string $contentType the mimetype that the downloaded file should have
+ */
+ public function __construct($content, $filename, $contentType){
+ parent::__construct($filename, $contentType);
+ $this->content = $content;
+ }
+
+
+ /**
+ * Simply sets the headers and returns the file contents
+ * @return string the file contents
+ */
+ public function render(){
+ return $this->content;
+ }
}
diff --git a/http/textresponse.php b/http/textresponse.php
index 8ea015329..7f1866ec4 100644
--- a/http/textresponse.php
+++ b/http/textresponse.php
@@ -20,27 +20,27 @@ use \OCP\AppFramework\Http\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 $contentType the mimetype. text/ is added automatically so
- * only plain or html can be added to get text/plain or text/html
- */
- public function __construct($content, $contentType='plain'){
- $this->content = $content;
- $this->addHeader('Content-type', 'text/' . $contentType);
- }
-
-
- /**
- * Simply sets the headers and returns the file contents
- * @return string the file contents
- */
- public function render(){
- return $this->content;
- }
+ private $content;
+
+ /**
+ * Creates a response that just outputs text
+ * @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
+ */
+ public function __construct($content, $contentType='plain'){
+ $this->content = $content;
+ $this->addHeader('Content-type', 'text/' . $contentType);
+ }
+
+
+ /**
+ * Simply sets the headers and returns the file contents
+ * @return string the file contents
+ */
+ public function render(){
+ return $this->content;
+ }
}