PhpDocTagNode.php
Namespace
PHPStan\PhpDocParser\Ast\PhpDocFile
-
vendor/
phpstan/ phpdoc-parser/ src/ Ast/ PhpDoc/ PhpDocTagNode.php
View source
<?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}");
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
PhpDocTagNode |