/home/techb158/ileadtechnology.com/SSM/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php (844B)
array(): Statements
* @param array $attributes Additional attributes
*/
public function __construct($name, array $subNodes = [], array $attributes = []) {
$this->attributes = $attributes;
$this->name = \is_string($name) ? new Node\Identifier($name) : $name;
$this->stmts = $subNodes['stmts'] ?? [];
}
public function getSubNodeNames() : array {
return ['name', 'stmts'];
}
public function getType() : string {
return 'Stmt_Trait';
}
}