Session::put( $url,  $headers = array(),  $data = array(),  $options = array() )

Send a PUT request

Source

public function put($url, $headers = [], $data = [], $options = []) {
	return $this->request($url, $headers, $data, Requests::PUT, $options);
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.