Example #1
0
 /**
  * @param PathElement $pathElement
  */
 public function __construct($pathElement)
 {
     parent::__construct();
     $this->path = array($pathElement);
 }
Example #2
0
 /**
  * @param mixed $value
  */
 public function __construct($value)
 {
     parent::__construct();
     $this->value = $value;
 }
Example #3
0
 /**
  * @param string $name
  */
 public function __construct($name)
 {
     parent::__construct();
     $this->name = $name;
 }
Example #4
0
 public function evaluate(ViewElementTag $viewElement)
 {
     return $this->root->evaluate($viewElement);
 }