Airship\Engine\Hail::post PHP Method

post() public method

Perform a POST request
public post ( string $url, array $params = [] ) : Psr\Http\Message\ResponseInterface
$url string
$params array
return Psr\Http\Message\ResponseInterface
    public function post(string $url, array $params = []) : ResponseInterface
    {
        return $this->client->post($url, $this->params($params, $url));
    }