Jyxo\Input\Fluent::getValue PHP Method

getValue() public method

Returns a value by name.
public getValue ( string $name ) : mixed
$name string Variable name
return mixed
    public function getValue(string $name)
    {
        if (!array_key_exists($name, $this->values)) {
            throw new Exception('Value is not present');
        }
        return $this->values[$name];
    }