r::is_get PHP Method

is_get() static public method

Checks if the current request is a GET request
static public is_get ( ) : boolean
return boolean
    static function is_get()
    {
        return self::method() == 'GET' ? true : false;
    }