Ergo\Http\Client::post PHP Метод

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

Sends a POST request
public post ( $path, $body, $contentType = null ) : Response
Результат Response
    function post($path, $body, $contentType = null)
    {
        return $this->_dispatchRequest($this->_buildRequest('POST', $path, $body, $contentType));
    }