Neos\Flow\Mvc\Response::appendContent PHP Method

appendContent() public method

Appends content to the already existing content.
public appendContent ( string $content ) : void
$content string More response content
return void
    public function appendContent($content)
    {
        $this->content .= $content;
    }