HttpRequestService::_GET PHP Метод

_GET() публичный Метод

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