Kelpie\Server\Response::headersOutput PHP Метод

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

String representation of the headers to be sent in the response.
public headersOutput ( )
    public function headersOutput()
    {
        // Set default headers
        $this->_headers[self::CONNECTION] = $this->isPersistent() ? self::KEEP_ALIVE : self::CLOSE;
        return "{$this->_headers}";
    }