Airship\Engine\Hail::getAsync PHP Method

getAsync() public method

Perform a GET request, asynchronously
public getAsync ( string $url, array $params = [] ) : Psr\Http\Message\ResponseInterface
$url string
$params array
return Psr\Http\Message\ResponseInterface
    public function getAsync(string $url, array $params = []) : ResponseInterface
    {
        /** @noinspection PhpIncompatibleReturnTypeInspection */
        return $this->client->getAsync($url, $this->params($params, $url));
    }