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

clone.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: fbc308ef7036fb856338ba0f9b113fc9bf9daed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

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

?>