* @copyright 2001-2006 Gregory Beaver * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @version CVS: $Id: clone5.inc.php 243202 2007-09-30 02:08:08Z ashnazg $ * @filesource * @link http://www.phpdoc.org * @link http://pear.php.net/PhpDocumentor * @since 1.0rc1 * @todo CS cleanup - change package to PhpDocumentor */ /** * Clone an object in PHP 5 * * @param object $obj the object to be cloned * * @return object the new clone * @ignore * @todo CS cleanup - rename function to PhpDocumentor_clone */ function phpDocumentor_clone($obj) { return clone $obj; } ?>