getValue() public method

public getValue ( ) : string
return string The first element is the quantifier and the second the elements.
Example #1
0
 public function testReadAccessorsReturnPropertiesValues()
 {
     $expression = '"Hello"." "."world!"';
     $value = new EvaluatedValue($expression);
     $this->assertEquals($expression, $value->getValue());
 }