Neos\Flow\Mvc\Response::appendContent PHP Метод

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

Appends content to the already existing content.
public appendContent ( string $content ) : void
$content string More response content
Результат void
    public function appendContent($content)
    {
        $this->content .= $content;
    }