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.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ste/ASTNode.php b/src/ste/ASTNode.php
index ea40bac..2163161 100644
--- a/src/ste/ASTNode.php
+++ b/src/ste/ASTNode.php
@@ -2,10 +2,12 @@
namespace kch42\ste;
-abstract class ASTNode {
+abstract class ASTNode
+{
public $tpl;
public $offset;
- public function __construct($tpl, $off) {
+ public function __construct($tpl, $off)
+ {
$this->tpl = $tpl;
$this->offset = $off;
}