Neos\Flow\Mvc\Response::send PHP Метод

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

Sends the response
public send ( ) : void
Результат void
    public function send()
    {
        if ($this->content !== null) {
            echo $this->getContent();
        }
    }