mirror of
https://github.com/danog/phpdoc-parser.git
synced 2024-11-30 04:29:20 +01:00
fix unrelated phpstan error
This commit is contained in:
parent
c8ffa3e787
commit
15677da35a
@ -26,7 +26,7 @@ class TemplateTagValueNode implements PhpDocTagValueNode
|
||||
|
||||
public function __toString(): string
|
||||
{
|
||||
$bound = $this->bound ? " of {$this->bound}" : '';
|
||||
$bound = isset($this->bound) ? " of {$this->bound}" : '';
|
||||
return trim("{$this->name}{$bound} {$this->description}");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user