r::is_put PHP Method

is_put() static public method

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