Files
t404null/vendor/myclabs/deep-copy/fixtures/f004/UnclonableItem.php
Glitch (t404null) 25e7853992 Fixed twitter link
2022-06-25 11:33:59 +00:00

14 lines
193 B
PHP

<?php
namespace DeepCopy\f004;
use BadMethodCallException;
class UnclonableItem
{
private function __clone()
{
throw new BadMethodCallException('Unsupported call.');
}
}