1 2 3 4 5 6 7 8 9 10 11 12 13
<?php namespace kch42\ste; class TagNode extends ASTNode { public $name; public $params = array(); public $sub = array(); public function __construct($tpl, $off, $name = "") { parent::__construct($tpl, $off); $this->name = $name; } }