summaryrefslogtreecommitdiff
path: root/src/ste/ASTNode.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/ste/ASTNode.php')
-rw-r--r--src/ste/ASTNode.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ste/ASTNode.php b/src/ste/ASTNode.php
index fc5d9cc..ea40bac 100644
--- a/src/ste/ASTNode.php
+++ b/src/ste/ASTNode.php
@@ -3,10 +3,10 @@
namespace kch42\ste;
abstract class ASTNode {
- public $tpl;
- public $offset;
- public function __construct($tpl, $off) {
- $this->tpl = $tpl;
- $this->offset = $off;
- }
+ public $tpl;
+ public $offset;
+ public function __construct($tpl, $off) {
+ $this->tpl = $tpl;
+ $this->offset = $off;
+ }
}