Airship\Engine\Hail::postAsync PHP Method

postAsync() public method

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