<?php /** * Clone an object in PHP 5 * @param object * @return object * @ignore */ function phpDocumentor_clone($obj) { return clone $obj; } ?>