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.');
|
|
}
|
|
}
|