[TASK] Added the ProtocolHandlerException

[TASK] Started to implement the IRC-Protocol
This commit is contained in:
Jan Philipp Timme
2010-12-12 21:44:19 +00:00
parent b1a7ac5fdb
commit 03a4dfff71
10 changed files with 365 additions and 14 deletions
+4 -2
View File
@@ -37,13 +37,15 @@ class Protocol_BotProtocolHandler extends Protocol_AbstractProtocolHandler {
}
/**
* Will be replaced soon. Passes raw data into the outgoing buffer.
* Will put raw data into the outgoing buffer.
* This function will be removed soon.
* The ProtocolHandler shall take care of this directly.
* @deprecated
* @param string $data
* @return void
*/
public function sendRaw($data) {
$this->buffer_incoming->addData($data);
$this->buffer_outgoing->addData($data);
}
}