Files
wp-multisite-waas/dependencies/amphp/http-client/src/Internal/ForbidCloning.php
2024-11-30 18:24:12 -07:00

14 lines
306 B
PHP

<?php
namespace WP_Ultimo\Dependencies\Amp\Http\Client\Internal;
/** @internal */
trait ForbidCloning
{
protected final function __clone()
{
// clone is automatically denied to all external calls
// final protected instead of private to also force denial for all children
}
}