php-parser/lib/PhpParser/Node/Stmt/Finally_.php

31 lines
666 B
PHP
Raw 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 */
2016-07-25 14:25:04 +02:00
public $stmts;
/**
* Constructs a finally node.
*
* @param Node\Stmt[] $stmts Statements
* @param array $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;
}
2017-04-28 21:40:59 +02:00
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
}