Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/laminas/laminas-mvc/src/ResponseSender/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-mvc/src/ResponseSender/HttpResponseSender.php

<?php

namespace Laminas\Mvc\ResponseSender;

use Laminas\Http\Response;

class HttpResponseSender extends AbstractResponseSender
{
    /**
     * Send content
     *
     * @return HttpResponseSender
     */
    public function sendContent(SendResponseEvent $event)
    {
        if ($event->contentSent()) {
            return $this;
        }
        $response = $event->getResponse();
        echo $response->getContent();
        $event->setContentSent();
        return $this;
    }

    /**
     * Send HTTP response
     *
     * @param  SendResponseEvent $event
     * @return HttpResponseSender
     */
    public function __invoke(SendResponseEvent $event)
    {
        $response = $event->getResponse();
        if (! $response instanceof Response) {
            return $this;
        }

        $this->sendHeaders($event)
             ->sendContent($event);
        $event->stopPropagation(true);
        return $this;
    }
}