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

getValue() public method

public getValue ( ) : string
return string
    public function getValue() : string
    {
        return 'current';
    }

Usage Example

 public function testReadAccessorsReturnPropertiesValues()
 {
     $value = new ValueForCurrentValue();
     $this->assertEquals('current', $value->getValue());
 }
ValueForCurrentValue