1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 17:57:59 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/Declare_.php
2014-04-02 09:44:45 +02:00

29 lines
725 B
PHP

<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
/**
* @property DeclareDeclare[] $declares List of declares
* @property Node[] $stmts Statements
*/
class Declare_ extends Node\Stmt
{
/**
* Constructs a declare node.
*
* @param DeclareDeclare[] $declares List of declares
* @param Node[] $stmts Statements
* @param array $attributes Additional attributes
*/
public function __construct(array $declares, array $stmts, array $attributes = array()) {
parent::__construct(
array(
'declares' => $declares,
'stmts' => $stmts,
),
$attributes
);
}
}