lithium\analysis\logger\adapter\Growl::_send PHP Method

_send() protected method

Sends binary data to the Growl server.
protected _send ( string $data ) : boolean
$data string The raw binary data to send to the Growl server.
return boolean Always returns `true`.
    protected function _send($data)
    {
        if (fwrite($this->_connection(), $data, strlen($data)) === false) {
            throw new NetworkException('Could not send registration to Growl Server.');
        }
        return true;
    }