PHP Интерфейс Neos\Flow\Mvc\ResponseInterface

Показать файл Открыть проект

Открытые методы

Метод Описание
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

Описание методов

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

Appends content to the already existing content.
public appendContent ( string $content ) : void
$content string More response content
Результат void

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

Returns the response content without sending it.
public getContent ( ) : string
Результат string The response content

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

Sends the response
public send ( ) : void
Результат void

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

Overrides and sets the content of the response
public setContent ( string $content ) : void
$content string The response content
Результат void