PHP 인터페이스 Neos\Flow\Mvc\ResponseInterface

파일 보기 프로젝트 열기: neos/flow-development-collection

공개 메소드들

메소드 설명
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