lithium\analysis\logger\adapter\FirePhp::bind PHP Method

bind() public method

Binds the response object to the logger and sets the required Wildfire protocol headers.
public bind ( object $response ) : void
$response object An instance of a response object (usually `lithium\action\Response`) with HTTP request information.
return void
    public function bind($response)
    {
        $this->_response = $response;
        $this->_response->headers += $this->_headers;
        foreach ($this->_queue as $message) {
            $this->_write($message);
        }
    }