1: <?php
2:
3: class RESTian_Text_Plain_Parser extends RESTian_Parser_Base {
4: /**
5: * Returns an object or array of stdClass objects from a string containing HTML
6: *
7: * @param string $body
8: * @return array|object|void A(n array of) stdClass object(s) with structure dictated by the passed HTML string.
9: */
10: function parse( $body ) {
11: return $body;
12: }
13: }
14: