2014-02-06 14:44:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
|
|
|
class If_ extends Node\Stmt
|
|
|
|
{
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var Node\Expr Condition expression */
|
|
|
|
public $cond;
|
|
|
|
/** @var Node[] Statements */
|
|
|
|
public $stmts;
|
|
|
|
/** @var ElseIf_[] Elseif clauses */
|
|
|
|
public $elseifs;
|
|
|
|
/** @var null|Else_ Else clause */
|
|
|
|
public $else;
|
2014-02-06 14:44:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs an if node.
|
|
|
|
*
|
|
|
|
* @param Node\Expr $cond Condition
|
|
|
|
* @param array $subNodes Array of the following optional subnodes:
|
|
|
|
* 'stmts' => array(): Statements
|
|
|
|
* 'elseifs' => array(): Elseif clauses
|
|
|
|
* 'else' => null : Else clause
|
|
|
|
* @param array $attributes Additional attributes
|
|
|
|
*/
|
|
|
|
public function __construct(Node\Expr $cond, array $subNodes = array(), array $attributes = array()) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->cond = $cond;
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->stmts = isset($subNodes['stmts']) ? $subNodes['stmts'] : array();
|
|
|
|
$this->elseifs = isset($subNodes['elseifs']) ? $subNodes['elseifs'] : array();
|
|
|
|
$this->else = isset($subNodes['else']) ? $subNodes['else'] : null;
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array('cond', 'stmts', 'elseifs', 'else');
|
|
|
|
}
|
|
|
|
}
|