HttpRequestService::_GET PHP Method

_GET() public method

GET wrapper for get data
public _GET ( $url, $params = null, $username = null, $password = null ) : RESTClient
$url String
$params mixed
$username String
$password String
return RESTClient
    public function _GET($url, $params = null, $username = null, $password = null)
    {
        $response = $this->call($url, 'GET', $params, $username, $password);
        return $this->parseResponse($response);
    }