/home/techb158/dev.balacoffee.com/vendor/nikic/php-parser/lib/PhpParser/Node
Edit: /home/techb158/dev.balacoffee.com/vendor/nikic/php-parser/lib/PhpParser/Node/Param.php (2165B)
attributes = $attributes;
$this->type = \is_string($type) ? new Identifier($type) : $type;
$this->byRef = $byRef;
$this->variadic = $variadic;
$this->var = $var;
$this->default = $default;
$this->flags = $flags;
$this->attrGroups = $attrGroups;
}
public function getSubNodeNames() : array {
return ['attrGroups', 'flags', 'type', 'byRef', 'variadic', 'var', 'default'];
}
public function getType() : string {
return 'Param';
}
}