2016-07-25 14:25:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
|
|
|
class Finally_ extends Node\Stmt
|
|
|
|
{
|
2017-01-19 22:46:28 +01:00
|
|
|
/** @var Node\Stmt[] Statements */
|
2016-07-25 14:25:04 +02:00
|
|
|
public $stmts;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a finally node.
|
|
|
|
*
|
2017-01-19 22:46:28 +01:00
|
|
|
* @param Node\Stmt[] $stmts Statements
|
|
|
|
* @param array $attributes Additional attributes
|
2016-07-25 14:25:04 +02:00
|
|
|
*/
|
|
|
|
public function __construct(array $stmts = array(), array $attributes = array()) {
|
|
|
|
parent::__construct($attributes);
|
|
|
|
$this->stmts = $stmts;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array('stmts');
|
|
|
|
}
|
|
|
|
}
|