Page MenuHomeWickedGov Phorge

ReturnTagValueNode.php
No OneTemporary

Size
591 B
Referenced Files
None
Subscribers
None

ReturnTagValueNode.php

<?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 ReturnTagValueNode implements PhpDocTagValueNode
{
use NodeAttributes;
public TypeNode $type;
/** @var string (may be empty) */
public string $description;
public function __construct(TypeNode $type, string $description)
{
$this->type = $type;
$this->description = $description;
}
public function __toString(): string
{
return trim("{$this->type} {$this->description}");
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 18:49 (5 h, 12 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
81/d5/e78b7c94b638633463d19fd4e7f4
Default Alt Text
ReturnTagValueNode.php (591 B)

Event Timeline