lithium\analysis\logger\adapter\Growl::_send()
Sends binary data to the Growl server.
Parameters
-
string
$data
The raw binary data to send to the Growl server.
Returns
booleanAlways returns true
.
Source
protected function _send($data) {
if (fwrite($this->_connection(), $data, strlen($data)) === false) {
throw new NetworkException('Could not send registration to Growl Server.');
}
return true;
}