PHP Interface Neos\Flow\Mvc\ResponseInterface

Afficher le fichier Open project: neos/flow-development-collection

Méthodes publiques

Méthode Description
appendContent ( string $content ) : void Appends content to the already existing content.
getContent ( ) : string Returns the response content without sending it.
send ( ) : void Sends the response
setContent ( string $content ) : void Overrides and sets the content of the response

Method Details

appendContent() public méthode

Appends content to the already existing content.
public appendContent ( string $content ) : void
$content string More response content
Résultat void

getContent() public méthode

Returns the response content without sending it.
public getContent ( ) : string
Résultat string The response content

send() public méthode

Sends the response
public send ( ) : void
Résultat void

setContent() public méthode

Overrides and sets the content of the response
public setContent ( string $content ) : void
$content string The response content
Résultat void