forked from extern/egroupware
26 lines
636 B
PHP
26 lines
636 B
PHP
<?php
|
|
|
|
include_once 'Horde/SyncML/Command.php';
|
|
|
|
/**
|
|
* $Horde: framework/SyncML/SyncML/Command/Replace.php,v 1.7 2004/05/26 17:41:30 chuck Exp $
|
|
*
|
|
* Copyright 2003-2004 Anthony Mills <amills@pyramid6.com>
|
|
*
|
|
* See the enclosed file COPYING for license information (LGPL). If you
|
|
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
|
|
*
|
|
* @author Anthony Mills <amills@pyramid6.com>
|
|
* @version $Revision$
|
|
* @since Horde 3.0
|
|
* @package Horde_SyncML
|
|
*/
|
|
class Horde_SyncML_Command_Final extends Horde_SyncML_Command {
|
|
|
|
function output($currentCmdID, &$output)
|
|
{
|
|
return $currentCmdID;
|
|
}
|
|
|
|
}
|