Sends binary data to the Growl server.

Parameters

  • string $data The raw binary data to send to the Growl server.

Returns

boolean Always 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;
	}