Page MenuHomeWickedGov Phorge

DeprecatedTagValueNode.php
No OneTemporary

Size
469 B
Referenced Files
None
Subscribers
None

DeprecatedTagValueNode.php

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

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 21:02 (1 d, 13 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
5d/85/0ab2f6332d249d62fed949b94ded
Default Alt Text
DeprecatedTagValueNode.php (469 B)

Event Timeline