2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
2011-09-23 18:53:11 +02:00
|
|
|
/**
|
|
|
|
* @property PHPParser_Node_Stmt_DeclareDeclare[] $declares List of declares
|
|
|
|
* @property PHPParser_Node[] $stmts Statements
|
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Node_Stmt_Declare extends PHPParser_Node_Stmt
|
|
|
|
{
|
2011-10-21 16:51:37 +02:00
|
|
|
/**
|
|
|
|
* Constructs a declare node.
|
|
|
|
*
|
|
|
|
* @param PHPParser_Node_Stmt_DeclareDeclare[] $declares List of declares
|
|
|
|
* @param PHPParser_Node[] $stmts Statements
|
|
|
|
* @param int $line Line
|
|
|
|
* @param null|string $docComment Nearest doc comment
|
|
|
|
*/
|
|
|
|
public function __construct(array $declares, array $stmts, $line = -1, $docComment = null) {
|
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'declares' => $declares,
|
|
|
|
'stmts' => $stmts,
|
|
|
|
),
|
|
|
|
$line, $docComment
|
|
|
|
);
|
|
|
|
}
|
2011-06-05 18:40:04 +02:00
|
|
|
}
|