r::is_post PHP Method

is_post() static public method

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