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

Breadcrumb

  1. Drupal Core 11.1.x

GenericTagValueNode.php

Namespace

PHPStan\PhpDocParser\Ast\PhpDoc

File

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

View source
<?php

declare (strict_types=1);
namespace PHPStan\PhpDocParser\Ast\PhpDoc;

use PHPStan\PhpDocParser\Ast\NodeAttributes;
class GenericTagValueNode implements PhpDocTagValueNode {
    use NodeAttributes;
    
    /** @var string (may be empty) */
    public $value;
    public function __construct(string $value) {
        $this->value = $value;
    }
    public function __toString() : string {
        return $this->value;
    }

}

Classes

Title Deprecated Summary
GenericTagValueNode
RSS feed
Powered by Drupal