summaryrefslogtreecommitdiff
path: root/src/ste/TextNode.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/ste/TextNode.php')
-rw-r--r--src/ste/TextNode.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ste/TextNode.php b/src/ste/TextNode.php
index e6c7876..c68dd2f 100644
--- a/src/ste/TextNode.php
+++ b/src/ste/TextNode.php
@@ -2,10 +2,12 @@
namespace kch42\ste;
-class TextNode extends ASTNode {
+class TextNode extends ASTNode
+{
public $text;
- public function __construct($tpl, $off, $text = "") {
+ public function __construct($tpl, $off, $text = "")
+ {
parent::__construct($tpl, $off);
$this->text = $text;
}
-} \ No newline at end of file
+}