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.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ste/TextNode.php b/src/ste/TextNode.php
index d48c2bb..e6c7876 100644
--- a/src/ste/TextNode.php
+++ b/src/ste/TextNode.php
@@ -3,9 +3,9 @@
namespace kch42\ste;
class TextNode extends ASTNode {
- public $text;
- public function __construct($tpl, $off, $text = "") {
- parent::__construct($tpl, $off);
- $this->text = $text;
- }
+ public $text;
+ public function __construct($tpl, $off, $text = "") {
+ parent::__construct($tpl, $off);
+ $this->text = $text;
+ }
} \ No newline at end of file