Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

InvalidTagValueNode.php

Namespace

PHPStan\PhpDocParser\Ast\PhpDoc

File

vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/InvalidTagValueNode.php

View source
<?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 $value;
    
    /** @var mixed[] */
    private $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;
    }

}

Classes

Title Deprecated Summary
InvalidTagValueNode @property ParserException $exception
RSS feed
Powered by Drupal