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