📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:44:36
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc
🔄 Refresh
✏️
Editing: InvalidTagValueNode.php
Writable
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\PhpDoc; use PHPStan\PhpDocParser\Ast\NodeAttributes; use PHPStan\PhpDocParser\Parser\ParserException; use function sprintf; use function trigger_error; use const E_USER_WARNING; /** * @property ParserException $exception */ class InvalidTagValueNode implements PhpDocTagValueNode { use NodeAttributes; /** @var string (may be empty) */ public string $value; /** @var mixed[] */ private array $exceptionArgs; public function __construct(string $value, ParserException $exception) { $this->value = $value; $this->exceptionArgs = [ $exception->getCurrentTokenValue(), $exception->getCurrentTokenType(), $exception->getCurrentOffset(), $exception->getExpectedTokenType(), $exception->getExpectedTokenValue(), $exception->getCurrentTokenLine(), ]; } public function __get(string $name): ?ParserException { if ($name !== 'exception') { trigger_error(sprintf('Undefined property: %s::$%s', self::class, $name), E_USER_WARNING); return null; } return new ParserException(...$this->exceptionArgs); } public function __toString(): string { return $this->value; } }
💾 Save Changes
❌ Cancel