This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dumbo/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Declare.php
2014-11-25 16:42:40 +01:00

25 lines
801 B
PHP

<?php
/**
* @property PHPParser_Node_Stmt_DeclareDeclare[] $declares List of declares
* @property PHPParser_Node[] $stmts Statements
*/
class PHPParser_Node_Stmt_Declare extends PHPParser_Node_Stmt
{
/**
* Constructs a declare node.
*
* @param PHPParser_Node_Stmt_DeclareDeclare[] $declares List of declares
* @param PHPParser_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
);
}
}