File modules/phariable/ValueExpression.class.php
Last commit: Thu Dec 26 19:49:19 2024 +0100 Jan Dankert New: Import the module 'phariable' via a new dependency script. The Variable Resolver has now it's own repository.
1 <?php 2 3 namespace phariable;; 4 5 class ValueExpression 6 { 7 public $prefix; 8 public $name; 9 public $default; 10 11 /** 12 * ValueExpression constructor. 13 * @param $prefix 14 * @param $name 15 * @param $default 16 */ 17 public function __construct($prefix, $name, $default) 18 { 19 $this->prefix = $prefix; 20 $this->name = $name; 21 $this->default = $default; 22 } 23 }
Downloadmodules/phariable/ValueExpression.class.php
History Thu, 26 Dec 2024 19:49:19 +0100 Jan Dankert New: Import the module 'phariable' via a new dependency script. The Variable Resolver has now it's own repository.