Larabros\Elogram\Helpers\RedirectLoginHelper::getInput PHP Method

getInput() protected method

Retrieves and returns a value from a GET param.
protected getInput ( string $key ) : string | null
$key string
return string | null
    protected function getInput($key)
    {
        return isset($_GET[$key]) ? $_GET[$key] : null;
    }