Requests::patch( $url,  $headers,  $data = array(),  $options = array() )

Send a PATCH request


Description

Note: Unlike \WpOrg\Requests\Requests::post() and \WpOrg\Requests\Requests::put(), $headers is required, as the specification recommends that should send an ETag


Source

File: wp-includes/Requests/src/Requests.php

	public static function patch($url, $headers, $data = [], $options = []) {
		return self::request($url, $headers, $data, self::PATCH, $options);
	}