diff options
author | 2016-09-10 20:41:11 +0200 | |
---|---|---|
committer | 2016-09-10 20:41:11 +0200 | |
commit | 62eec43980a3b85134606383996b81084d8fa32c (patch) | |
tree | e3d816bcc9d60794600322702df906044cf6ac5d /formats/PlaintextFormat.php | |
parent | 32ce2b65411d0cb02a0116bf05fef234e52e7c8f (diff) | |
download | rss-bridge-62eec43980a3b85134606383996b81084d8fa32c.tar.gz rss-bridge-62eec43980a3b85134606383996b81084d8fa32c.tar.zst rss-bridge-62eec43980a3b85134606383996b81084d8fa32c.zip |
[core] Apply common indentation
All files are now using tabs for indentation
Diffstat (limited to 'formats/PlaintextFormat.php')
-rw-r--r-- | formats/PlaintextFormat.php | 24 |
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(); + } +} |