2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2011-10-30 12:03:29 +01:00
|
|
|
|
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.
|
|
|
|
*
|
2017-04-28 19:09:39 +02:00
|
|
|
* @param string|Node\Identifier $name Name
|
2016-07-22 17:01:51 +02:00
|
|
|
* @param array $subNodes Array of the following optional subnodes:
|
|
|
|
* 'stmts' => array(): Statements
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param array $attributes Additional attributes
|
2011-10-30 12:03:29 +01:00
|
|
|
*/
|
2017-08-13 14:06:08 +02:00
|
|
|
public function __construct($name, array $subNodes = [], array $attributes = []) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2017-04-28 19:09:39 +02:00
|
|
|
$this->name = \is_string($name) ? new Node\Identifier($name) : $name;
|
2017-08-13 14:06:08 +02:00
|
|
|
$this->stmts = isset($subNodes['stmts']) ? $subNodes['stmts'] : [];
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getSubNodeNames() : array {
|
2017-08-13 14:06:08 +02:00
|
|
|
return ['name', 'stmts'];
|
2011-10-30 12:03:29 +01:00
|
|
|
}
|
2017-11-12 21:25:57 +01:00
|
|
|
|
|
|
|
function getType() : string {
|
|
|
|
return 'Stmt_Trait';
|
|
|
|
}
|
2015-01-31 22:59:38 +01:00
|
|
|
}
|