2011-10-30 12:03:29 +01:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
2015-01-31 22:59:38 +01:00
|
|
|
class Trait_ extends ClassLike
|
2011-10-30 12:03:29 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructs a trait node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param string $name Name
|
|
|
|
* @param Node[] $stmts Statements
|
|
|
|
* @param array $attributes Additional attributes
|
2011-10-30 12:03:29 +01:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($name, array $stmts = array(), array $attributes = array()) {
|
2015-02-28 18:44:28 +01:00
|
|
|
parent::__construct(null, $attributes);
|
|
|
|
$this->name = $name;
|
|
|
|
$this->stmts = $stmts;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array('name', 'stmts');
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
2015-01-31 22:59:38 +01:00
|
|
|
}
|