PATH:
opt
/
cpanel
/
ea-wappspector
/
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 count; use function implode; class MethodTagValueNode implements PhpDocTagValueNode { use NodeAttributes; public bool $isStatic; public ?TypeNode $returnType = null; public string $methodName; /** @var TemplateTagValueNode[] */ public array $templateTypes; /** @var MethodTagValueParameterNode[] */ public array $parameters; /** @var string (may be empty) */ public string $description; /** * @param MethodTagValueParameterNode[] $parameters * @param TemplateTagValueNode[] $templateTypes */ public function __construct(bool $isStatic, ?TypeNode $returnType, string $methodName, array $parameters, string $description, array $templateTypes) { $this->isStatic = $isStatic; $this->returnType = $returnType; $this->methodName = $methodName; $this->parameters = $parameters; $this->description = $description; $this->templateTypes = $templateTypes; } public function __toString(): string { $static = $this->isStatic ? 'static ' : ''; $returnType = $this->returnType !== null ? "{$this->returnType} " : ''; $parameters = implode(', ', $this->parameters); $description = $this->description !== '' ? " {$this->description}" : ''; $templateTypes = count($this->templateTypes) > 0 ? '<' . implode(', ', $this->templateTypes) . '>' : ''; return "{$static}{$returnType}{$this->methodName}{$templateTypes}({$parameters}){$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]
[-] SealedTagValueNode.php
[edit]
[-] PhpDocChildNode.php
[edit]
[-] RequireExtendsTagValueNode.php
[edit]
[-] ParamClosureThisTagValueNode.php
[edit]
[-] ThrowsTagValueNode.php
[edit]