Nelmio\Alice\FixtureBuilder\ExpressionLanguage\Token::withValue PHP Method

withValue() public method

public withValue ( string $value ) : self
$value string
return self
    public function withValue(string $value) : self
    {
        $clone = clone $this;
        $clone->value = $value;
        return $clone;
    }