1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-02 17:28:27 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/Trait_.php

29 lines
631 B
PHP
Raw Normal View History

2011-10-30 12:03:29 +01:00
<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
2011-10-30 12:03:29 +01:00
/**
* @property string $name Name
* @property Node[] $stmts Statements
2011-10-30 12:03:29 +01:00
*/
class Trait_ extends Node\Stmt
2011-10-30 12:03:29 +01:00
{
/**
* Constructs a trait node.
*
* @param string $name Name
* @param Node[] $stmts Statements
* @param array $attributes Additional attributes
2011-10-30 12:03:29 +01: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,
),
$attributes
2011-10-30 12:03:29 +01:00
);
}
}