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

31 lines
869 B
PHP
Raw Normal View History

2017-08-18 22:57:27 +02:00
<?php declare(strict_types=1);
2011-10-30 12:03:29 +01:00
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 $attributes = []) {
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'] : [];
}
2017-04-28 21:40:59 +02:00
public function getSubNodeNames() : array {
return ['name', 'stmts'];
2011-10-30 12:03:29 +01:00
}
function getType() : string {
return 'Stmt_Trait';
}
}