Gajus\Fuss\Request::setBody PHP Method

setBody() public method

public setBody ( array $body ) : null
$body array
return null
    public function setBody(array $body)
    {
        if ($this->getMethod() !== 'POST') {
            throw new Exception\RequestException($this->getMethod() . ' request method must not have body.');
        }
        $this->body = $body;
    }