Session::get( $url, $headers = array(), $options = array() )
Send a GET request
Source
File: wp-includes/Requests/src/Session.php
public function get($url, $headers = [], $options = []) {
return $this->request($url, $headers, null, Requests::GET, $options);
}