Send a PATCH request
Description
Note: Unlike \WpOrg\Requests\Session::post() and \WpOrg\Requests\Session::put(), $headers
is required, as the specification recommends that should send an ETag
Source
public function patch($url, $headers, $data = [], $options = []) {
return $this->request($url, $headers, $data, Requests::PATCH, $options);
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.