mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-23 03:19:10 -04:00
14 lines
193 B
PHP
14 lines
193 B
PHP
<?php
|
|
|
|
namespace DeepCopy\f004;
|
|
|
|
use BadMethodCallException;
|
|
|
|
class UnclonableItem
|
|
{
|
|
private function __clone()
|
|
{
|
|
throw new BadMethodCallException('Unsupported call.');
|
|
}
|
|
}
|