mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 18:07:58 +01:00
1c11626f0a
Rather than automatically deriving getType() from the class name.
31 lines
652 B
PHP
31 lines
652 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
class Else_ extends Node\Stmt
|
|
{
|
|
/** @var Node\Stmt[] Statements */
|
|
public $stmts;
|
|
|
|
/**
|
|
* Constructs an else node.
|
|
*
|
|
* @param Node\Stmt[] $stmts Statements
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(array $stmts = [], array $attributes = []) {
|
|
parent::__construct($attributes);
|
|
$this->stmts = $stmts;
|
|
}
|
|
|
|
public function getSubNodeNames() : array {
|
|
return ['stmts'];
|
|
}
|
|
|
|
function getType() : string {
|
|
return 'Stmt_Else';
|
|
}
|
|
}
|