30 lines
670 B
PHP
Raw Permalink Normal View History

2017-08-18 22:57:27 +02:00
<?php declare(strict_types=1);
2016-07-25 14:25:04 +02:00
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
class Finally_ extends Node\Stmt {
/** @var Node\Stmt[] Statements */
public array $stmts;
2016-07-25 14:25:04 +02:00
/**
* Constructs a finally node.
*
* @param Node\Stmt[] $stmts Statements
* @param array<string, mixed> $attributes Additional attributes
2016-07-25 14:25:04 +02:00
*/
public function __construct(array $stmts = [], array $attributes = []) {
$this->attributes = $attributes;
2016-07-25 14:25:04 +02:00
$this->stmts = $stmts;
}
public function getSubNodeNames(): array {
return ['stmts'];
2016-07-25 14:25:04 +02:00
}
public function getType(): string {
return 'Stmt_Finally';
}
2016-07-25 14:25:04 +02:00
}