2011-10-30 12:03:29 +01:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
2011-10-30 12:03:29 +01:00
|
|
|
/**
|
2014-02-06 14:44:16 +01:00
|
|
|
* @property string $name Name
|
|
|
|
* @property Node[] $stmts Statements
|
2011-10-30 12:03:29 +01:00
|
|
|
*/
|
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()) {
|
2011-10-30 12:03:29 +01:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'name' => $name,
|
|
|
|
'stmts' => $stmts,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-10-30 12:03:29 +01:00
|
|
|
);
|
|
|
|
}
|
2015-01-31 22:59:38 +01:00
|
|
|
}
|