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

Breadcrumb

  1. Drupal Core 11.1.x

ParamTagValueNode.php

Namespace

PHPStan\PhpDocParser\Ast\PhpDoc

File

vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamTagValueNode.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 ParamTagValueNode implements PhpDocTagValueNode {
    use NodeAttributes;
    
    /** @var TypeNode */
    public $type;
    
    /** @var bool */
    public $isReference;
    
    /** @var bool */
    public $isVariadic;
    
    /** @var string */
    public $parameterName;
    
    /** @var string (may be empty) */
    public $description;
    public function __construct(TypeNode $type, bool $isVariadic, string $parameterName, string $description, bool $isReference = false) {
        $this->type = $type;
        $this->isReference = $isReference;
        $this->isVariadic = $isVariadic;
        $this->parameterName = $parameterName;
        $this->description = $description;
    }
    public function __toString() : string {
        $reference = $this->isReference ? '&' : '';
        $variadic = $this->isVariadic ? '...' : '';
        return trim("{$this->type} {$reference}{$variadic}{$this->parameterName} {$this->description}");
    }

}

Classes

Title Deprecated Summary
ParamTagValueNode
RSS feed
Powered by Drupal