| 1: | <?php |
| 2: | namespace Sphp\tools{ |
| 3: | /** |
| 4: | * Description of NodeText |
| 5: | * |
| 6: | * @author Sartaj |
| 7: | */ |
| 8: | class NodeText { |
| 9: | public $type = "text"; |
| 10: | public $tagName = ""; |
| 11: | public $children = array(); |
| 12: | public $myclass = "Sphp\\tools\\NodeText"; |
| 13: | public function init($val){} |
| 14: | public function render(){} |
| 15: | public function getChildren() {} |
| 16: | public function isChildren() {} |
| 17: | } |
| 18: | } |
| 19: |