Nelmio\Alice\Definition\Value\ValueForCurrentValue::getValue PHP Méthode

getValue() public méthode

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

Usage Example

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