Nelmio\Alice\Definition\Value\VariableValue::getValue PHP Method

getValue() public method

public getValue ( ) : string
return string
    public function getValue() : string
    {
        return $this->variable;
    }

Usage Example

Beispiel #1
0
 public function testReadAccessorsReturnPropertiesValues()
 {
     $variable = 'username';
     $value = new VariableValue($variable);
     $this->assertEquals($variable, $value->getValue());
 }