/opt/cpanel/ea-wappspector/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc
Edit: /opt/cpanel/ea-wappspector/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTextNode.php (702B)
text = $text;
}
public function __toString(): string
{
return $this->text;
}
/**
* @param array
$properties
*/
public static function __set_state(array $properties): self
{
$instance = new self($properties['text']);
if (isset($properties['attributes'])) {
foreach ($properties['attributes'] as $key => $value) {
$instance->setAttribute($key, $value);
}
}
return $instance;
}
}