2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2011-09-28 16:26:51 +02:00
|
|
|
* @property null|PHPParser_Node_Expr $cond Condition (null for default)
|
2011-09-30 19:19:17 +02:00
|
|
|
* @property PHPParser_Node[] $stmts Statements
|
2011-06-05 18:40:04 +02:00
|
|
|
*/
|
|
|
|
class PHPParser_Node_Stmt_Case extends PHPParser_Node_Stmt
|
|
|
|
{
|
2011-09-23 18:45:29 +02:00
|
|
|
/**
|
|
|
|
* Constructs a case node.
|
|
|
|
*
|
|
|
|
* @param null|PHPParser_Node_Expr $cond Condition (null for default)
|
2011-09-30 19:19:17 +02:00
|
|
|
* @param PHPParser_Node[] $stmts Statements
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param array $attributes Additional attributes
|
2011-09-23 18:45:29 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($cond, array $stmts = array(), array $attributes = array()) {
|
2011-09-23 18:45:29 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'cond' => $cond,
|
2012-10-19 14:54:56 +02:00
|
|
|
'stmts' => $stmts,
|
2011-09-23 18:45:29 +02:00
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-09-23 18:45:29 +02:00
|
|
|
);
|
|
|
|
}
|
2011-06-05 18:40:04 +02:00
|
|
|
}
|