Welcome to mirror list, hosted at ThFree Co, Russian Federation.

clone5.inc.php « phpDocumentor « PhpDocumentor-1.3.2 « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 775453939bf23e2d8c58f1fc214599f2b2e0263e (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;
}

?>