PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
/
Editing: PhpDocTagNode.php
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\PhpDoc; use PHPStan\PhpDocParser\Ast\NodeAttributes; use PHPStan\PhpDocParser\Ast\PhpDoc\Doctrine\DoctrineTagValueNode; use function trim; class PhpDocTagNode implements PhpDocChildNode { use NodeAttributes; /** @var string */ public $name; /** @var PhpDocTagValueNode */ public $value; public function __construct(string $name, PhpDocTagValueNode $value) { $this->name = $name; $this->value = $value; } public function __toString(): string { if ($this->value instanceof DoctrineTagValueNode) { return (string) $this->value; } return trim("{$this->name} {$this->value}"); } }
SAVE
CANCEL