2010-11-28 00:04:35 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The ProtocolHandler for the IRC Protocol.
|
|
|
|
* @author JPT
|
|
|
|
* @package Protocol
|
|
|
|
*/
|
2010-11-28 01:15:20 +00:00
|
|
|
class Protocol_IrcProtocolHandler extends Protocol_AbstractProtocolHandler {
|
2010-11-28 00:04:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $data
|
|
|
|
* @return Protocol_IrcProtocolContentObject
|
|
|
|
*/
|
|
|
|
public function parse($data) {
|
|
|
|
return new Protocol_IrcProtocolContentObject($data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|