Page MenuHomeWickedGov Phorge

ParamLaterInvokedCallableTagValueNode.php
No OneTemporary

Size
606 B
Referenced Files
None
Subscribers
None

ParamLaterInvokedCallableTagValueNode.php

<?php declare(strict_types = 1);
namespace PHPStan\PhpDocParser\Ast\PhpDoc;
use PHPStan\PhpDocParser\Ast\NodeAttributes;
use function trim;
class ParamLaterInvokedCallableTagValueNode implements PhpDocTagValueNode
{
use NodeAttributes;
public string $parameterName;
/** @var string (may be empty) */
public string $description;
public function __construct(string $parameterName, string $description)
{
$this->parameterName = $parameterName;
$this->description = $description;
}
public function __toString(): string
{
return trim("{$this->parameterName} {$this->description}");
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 21:54 (1 d, 5 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
af/dc/99d7f7e17f3367b42d194476365b
Default Alt Text
ParamLaterInvokedCallableTagValueNode.php (606 B)

Event Timeline