aboutsummaryrefslogtreecommitdiff
path: root/formats/PlaintextFormat.php
diff options
context:
space:
mode:
Diffstat (limited to 'formats/PlaintextFormat.php')
-rw-r--r--formats/PlaintextFormat.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/formats/PlaintextFormat.php b/formats/PlaintextFormat.php
index e2cf0b94..593e938d 100644
--- a/formats/PlaintextFormat.php
+++ b/formats/PlaintextFormat.php
@@ -3,18 +3,18 @@
* Plaintext
* Returns $this->items as raw php data.
*/
-class PlaintextFormat extends FormatAbstract{
+class PlaintextFormat extends FormatAbstract {
- public function stringify(){
- $items = $this->getItems();
- return print_r($items, true);
- }
+ public function stringify(){
+ $items = $this->getItems();
+ return print_r($items, true);
+ }
- public function display(){
- $this
- ->setContentType('text/plain;charset=' . $this->getCharset())
- ->callContentType();
+ public function display(){
+ $this
+ ->setContentType('text/plain;charset=' . $this->getCharset())
+ ->callContentType();
- return parent::display();
- }
-} \ No newline at end of file
+ return parent::display();
+ }
+}