%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/NotAnObject.php |
<?php declare(strict_types=1); namespace Roave\BetterReflection\Reflection\Exception; use InvalidArgumentException; use function gettype; use function sprintf; class NotAnObject extends InvalidArgumentException { /** * @param bool|int|float|string|array|resource|null $nonObject * * @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingTraversableTypeHintSpecification */ public static function fromNonObject($nonObject) : self { return new self(sprintf('Provided "%s" is not an object', gettype($nonObject))); } }