File modules/dsl/ast/DslTrue.class.php

Last commit: Fri Jul 1 18:09:05 2022 +0200	Jan Dankert	New: Bugfixes and much more string and array functions for the DSL.
1 <?php 2 3 namespace dsl\ast; 4 5 use dsl\DslParserException; 6 use dsl\DslToken; 7 8 class DslTrue implements DslStatement 9 { 10 public function execute( & $context) 11 { 12 return true; 13 } 14 15 16 public function parse($tokens) 17 { 18 } 19 }
Download modules/dsl/ast/DslTrue.class.php
History Fri, 1 Jul 2022 18:09:05 +0200 Jan Dankert New: Bugfixes and much more string and array functions for the DSL.