1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 18:28:25 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/Else_.php

26 lines
519 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
2011-06-05 18:40:04 +02:00
/**
* @property Node[] $stmts Statements
2011-06-05 18:40:04 +02:00
*/
class Else_ extends Node\Stmt
2011-06-05 18:40:04 +02:00
{
/**
* Constructs an else node.
*
* @param Node[] $stmts Statements
* @param array $attributes Additional attributes
*/
public function __construct(array $stmts = array(), array $attributes = array()) {
parent::__construct(
array(
'stmts' => $stmts,
),
$attributes
);
}
2011-06-05 18:40:04 +02:00
}