mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-02 17:38:19 +01:00
25 lines
705 B
PHP
25 lines
705 B
PHP
<?php
|
|
|
|
/**
|
|
* @property PHPParser_Node_Expr $cond Condition
|
|
* @property PHPParser_Node[] $stmts Statements
|
|
*/
|
|
class PHPParser_Node_Stmt_ElseIf extends PHPParser_Node_Stmt
|
|
{
|
|
/**
|
|
* Constructs an elseif node.
|
|
*
|
|
* @param PHPParser_Node_Expr $cond Condition
|
|
* @param PHPParser_Node[] $stmts Statements
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(PHPParser_Node_Expr $cond, array $stmts = array(), array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'cond' => $cond,
|
|
'stmts' => $stmts,
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |