getValue() public method

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