Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4113277
Cloner.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
751 B
Referenced Files
None
Subscribers
None
Cloner.php
View Options
<?php
declare
(
strict_types
=
1
);
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace
PHPUnit\Util
;
use
Throwable
;
/**
* @internal This class is not covered by the backward compatibility promise for PHPUnit
*/
final
class
Cloner
{
/**
* @psalm-template OriginalType
*
* @psalm-param OriginalType $original
*
* @psalm-return OriginalType
*/
public
static
function
clone
(
object
$original
):
object
{
try
{
return
clone
$original
;
}
catch
(
Throwable
$t
)
{
return
$original
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 23:19 (1 d, 8 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ca/ef/179e36bf0b72c1c537dbff6454bd
Default Alt Text
Cloner.php (751 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment