1: <?php
2: /**
3: * The Horde_SyncMl_Command_Results class provides a SyncML implementation of
4: * the Results command as defined in SyncML Representation Protocol, version
5: * 1.1, section 5.5.12.
6: *
7: * The Results command is used to return the results of a Search or Get
8: * command. Currently Horde_SyncMl_Command_Results behaves the same as
9: * Horde_SyncMl_Command_Put. The only results we get is the same DevInf as for
10: * the Put command.
11: *
12: * Copyright 2003-2012 Horde LLC (http://www.horde.org/)
13: *
14: * See the enclosed file COPYING for license information (LGPL). If you
15: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
16: *
17: * @author Nathan P Sharp
18: * @author Jan Schneider <jan@horde.org>
19: * @package SyncMl
20: */
21: class Horde_SyncMl_Command_Results extends Horde_SyncMl_Command_Put
22: {
23: /**
24: * Name of the command.
25: *
26: * @var string
27: */
28: protected $_cmdName = 'Results';
29: }
30: