summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/clone5.inc.php
blob: 20919a993093fe6abb044906d53f125d20dc3973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

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

?>