1: <?php
2: /**
3: * The Horde_Rpc_Syncml_Wbxml class provides a SyncML implementation of the
4: * Horde RPC system using WBXML encoding.
5: *
6: * Copyright 2003-2012 Horde LLC (http://www.horde.org/)
7: *
8: * See the enclosed file COPYING for license information (LGPL). If you
9: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
10: *
11: * @author Chuck Hagenbuch <chuck@horde.org>
12: * @author Anthony Mills <amills@pyramid6.com>
13: * @package Rpc
14: */
15: class Horde_Rpc_Syncml_Wbxml extends Horde_Rpc_Syncml
16: {
17: /**
18: * Returns the Content-Type of the response.
19: *
20: * @return string The MIME Content-Type of the RPC response.
21: */
22: function getResponseContentType()
23: {
24: return 'application/vnd.syncml+wbxml';
25: }
26:
27: }
28: