PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
<?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 \PHPStan\PhpDocParser\Ast\PhpDoc\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}"); } }
[-] MethodTagValueNode.php
[edit]
[-] ParamTagValueNode.php
[edit]
[-] MixinTagValueNode.php
[edit]
[-] ImplementsTagValueNode.php
[edit]
[-] DeprecatedTagValueNode.php
[edit]
[-] TypelessParamTagValueNode.php
[edit]
[-] AssertTagPropertyValueNode.php
[edit]
[+]
..
[-] TypeAliasImportTagValueNode.php
[edit]
[-] ParamOutTagValueNode.php
[edit]
[-] PropertyTagValueNode.php
[edit]
[-] ExtendsTagValueNode.php
[edit]
[-] TemplateTagValueNode.php
[edit]
[-] PhpDocNode.php
[edit]
[-] VarTagValueNode.php
[edit]
[-] InvalidTagValueNode.php
[edit]
[-] PhpDocTextNode.php
[edit]
[+]
Doctrine
[-] PureUnlessCallableIsImpureTagValueNode.php
[edit]
[-] ParamImmediatelyInvokedCallableTagValueNode.php
[edit]
[-] RequireImplementsTagValueNode.php
[edit]
[-] PhpDocTagNode.php
[edit]
[-] AssertTagMethodValueNode.php
[edit]
[-] UsesTagValueNode.php
[edit]
[-] ParamLaterInvokedCallableTagValueNode.php
[edit]
[-] TypeAliasTagValueNode.php
[edit]
[-] MethodTagValueParameterNode.php
[edit]
[-] AssertTagValueNode.php
[edit]
[-] ReturnTagValueNode.php
[edit]
[-] GenericTagValueNode.php
[edit]
[-] SelfOutTagValueNode.php
[edit]
[-] PhpDocTagValueNode.php
[edit]
[-] PhpDocChildNode.php
[edit]
[-] RequireExtendsTagValueNode.php
[edit]
[-] ParamClosureThisTagValueNode.php
[edit]
[-] ThrowsTagValueNode.php
[edit]