%PDF- %PDF-
Direktori : /home/graphicd/www/vebto/vendor/roave/better-reflection/src/Util/Exception/ |
Current File : /home/graphicd/www/vebto/vendor/roave/better-reflection/src/Util/Exception/NoNodePosition.php |
<?php declare(strict_types=1); namespace Roave\BetterReflection\Util\Exception; use InvalidArgumentException; use PhpParser\Lexer; use PhpParser\Node; use function get_class; use function sprintf; class NoNodePosition extends InvalidArgumentException { public static function fromNode(Node $node) : self { return new self(sprintf('%s doesn\'t contain position. Your %s is not configured properly', get_class($node), Lexer::class)); } }