php-parser/lib/PhpParser/Node/Stmt/Trait_.php

27 lines
790 B
PHP
Raw Normal View History

2011-10-30 12:03:29 +01:00
<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
class Trait_ extends ClassLike
2011-10-30 12:03:29 +01:00
{
/**
* Constructs a trait node.
*
* @param string|Node\Identifier $name Name
* @param array $subNodes Array of the following optional subnodes:
* 'stmts' => array(): Statements
* @param array $attributes Additional attributes
2011-10-30 12:03:29 +01:00
*/
public function __construct($name, array $subNodes = array(), array $attributes = array()) {
2015-05-02 22:17:34 +02:00
parent::__construct($attributes);
$this->name = \is_string($name) ? new Node\Identifier($name) : $name;
$this->stmts = isset($subNodes['stmts']) ? $subNodes['stmts'] : array();
}
2017-04-28 21:40:59 +02:00
public function getSubNodeNames() : array {
return array('name', 'stmts');
2011-10-30 12:03:29 +01:00
}
}