Airship\Engine\Hail::getAsync PHP Метод

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

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