mirror of
https://github.com/t404owo/t404null.git
synced 2025-12-12 18:08:47 +00: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.');
|
|
}
|
|
}
|