Neos\Flow\Mvc\Response::appendContent PHP Méthode

appendContent() public méthode

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