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.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ste/ASTNode.php b/src/ste/ASTNode.php
index 2163161..3e74635 100644
--- a/src/ste/ASTNode.php
+++ b/src/ste/ASTNode.php
@@ -4,8 +4,16 @@ namespace kch42\ste;
abstract class ASTNode
{
+ /** @var string */
public $tpl;
+
+ /** @var int */
public $offset;
+
+ /**
+ * @param string $tpl
+ * @param int $off
+ */
public function __construct($tpl, $off)
{
$this->tpl = $tpl;