FluxBB\Core\Action::get PHP Method

get() protected method

Get an input variable.
protected get ( string $key, mixed $default = null ) : mixed
$key string
$default mixed
return mixed
    protected function get($key, $default = null)
    {
        return array_get($this->input, $key, $default);
    }