mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
26 lines
575 B
PHP
26 lines
575 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
class Trait_ extends ClassLike
|
|
{
|
|
/**
|
|
* Constructs a trait node.
|
|
*
|
|
* @param string $name Name
|
|
* @param Node[] $stmts Statements
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct($name, array $stmts = array(), array $attributes = array()) {
|
|
parent::__construct($attributes);
|
|
$this->name = $name;
|
|
$this->stmts = $stmts;
|
|
}
|
|
|
|
public function getSubNodeNames() {
|
|
return array('name', 'stmts');
|
|
}
|
|
}
|