Requests_Session::patch( $url, $headers, $data = array(), $options = array() )
Send a PATCH request
Description
Note: Unlike post and put, $headers
is required, as the specification recommends that should send an ETag
Source
File: wp-includes/Requests/Session.php
public function patch($url, $headers, $data = array(), $options = array()) {
return $this->request($url, $headers, $data, Requests::PATCH, $options);
}