%PDF- %PDF-
Direktori : /home/graphicd/www/vebto/vendor/roave/better-reflection/src/Reflection/Exception/ |
Current File : /home/graphicd/www/vebto/vendor/roave/better-reflection/src/Reflection/Exception/Uncloneable.php |
<?php declare(strict_types=1); namespace Roave\BetterReflection\Reflection\Exception; use LogicException; class Uncloneable extends LogicException { public static function fromClass(string $className) : self { return new self('Trying to clone an uncloneable object of class ' . $className); } }