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

Breadcrumb

  1. Drupal Core 11.1.x

SelfOutTagValueNode.php

Namespace

PHPStan\PhpDocParser\Ast\PhpDoc

File

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

View source
<?php

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

use PHPStan\PhpDocParser\Ast\NodeAttributes;
use PHPStan\PhpDocParser\Ast\Type\TypeNode;
use function trim;
class SelfOutTagValueNode implements PhpDocTagValueNode {
    use NodeAttributes;
    
    /** @var TypeNode */
    public $type;
    
    /** @var string (may be empty) */
    public $description;
    public function __construct(TypeNode $type, string $description) {
        $this->type = $type;
        $this->description = $description;
    }
    public function __toString() : string {
        return trim($this->type . ' ' . $this->description);
    }

}

Classes

Title Deprecated Summary
SelfOutTagValueNode

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal