[TASK] Some Bugfixes.

This commit is contained in:
Jan Philipp Timme
2010-11-28 01:15:20 +00:00
parent bdd9f671ad
commit 3bd7a6e0f9
7 changed files with 38 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
/**
* A 1:1 passthrough handler
* @author JPT
* @package Protocol
*/
class Protocol_RawProtocolHandler extends Protocol_AbstractProtocolHandler {
/**
* @param string $data
* @return Protocol_RawProtocolContentObject
*/
public function parse($data) {
return new Protocol_RawProtocolContentObject($data);
}
}
?>