D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
/
Filename :
MixinTagValueNode.php
back
Copy
<?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 MixinTagValueNode implements PhpDocTagValueNode { use NodeAttributes; /** @var TypeNode */ public $type; /** @var string (may be empty) */ public $description; public function __construct(TypeNode $type, string $description) { $this->type = $type; $this->description = $description; } public function __toString(): string { return trim("{$this->type} {$this->description}"); } }