ParamLaterInvokedCallableTagValueNode.php
Namespace
PHPStan\PhpDocParser\Ast\PhpDocFile
-
vendor/
phpstan/ phpdoc-parser/ src/ Ast/ PhpDoc/ ParamLaterInvokedCallableTagValueNode.php
View source
<?php
declare (strict_types=1);
namespace PHPStan\PhpDocParser\Ast\PhpDoc;
use PHPStan\PhpDocParser\Ast\NodeAttributes;
use function trim;
class ParamLaterInvokedCallableTagValueNode implements PhpDocTagValueNode {
use NodeAttributes;
/** @var string */
public $parameterName;
/** @var string (may be empty) */
public $description;
public function __construct(string $parameterName, string $description) {
$this->parameterName = $parameterName;
$this->description = $description;
}
public function __toString() : string {
return trim("{$this->parameterName} {$this->description}");
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ParamLaterInvokedCallableTagValueNode |