| 1 | <?php |
||
| 17 | abstract class AbstractVariable extends AbstractNode implements VariableInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Initializes a new instance of this class. |
||
| 21 | * |
||
| 22 | * @param mixed $value The value to set. |
||
| 23 | */ |
||
| 24 | public function __construct($value = null) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Executes the node's logic. |
||
| 35 | */ |
||
| 36 | public function execute() |
||
| 41 | } |
||
| 42 |