Neos\Flow\Mvc\Response::send PHP 메소드

send() 공개 메소드

Sends the response
public send ( ) : void
리턴 void
    public function send()
    {
        if ($this->content !== null) {
            echo $this->getContent();
        }
    }