Nelmio\Alice\Definition\Value\EvaluatedValue::getValue PHP Метод

getValue() публичный Метод

public getValue ( ) : string
Результат string The first element is the quantifier and the second the elements.
    public function getValue() : string
    {
        return $this->expression;
    }

Usage Example

Пример #1
0
 public function testReadAccessorsReturnPropertiesValues()
 {
     $expression = '"Hello"." "."world!"';
     $value = new EvaluatedValue($expression);
     $this->assertEquals($expression, $value->getValue());
 }