2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2014-02-06 14:44:16 +01:00
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
|
|
|
class TryCatch extends Node\Stmt
|
|
|
|
{
|
2017-01-19 22:46:28 +01:00
|
|
|
/** @var Node\Stmt[] Statements */
|
2015-02-28 18:44:28 +01:00
|
|
|
public $stmts;
|
|
|
|
/** @var Catch_[] Catches */
|
|
|
|
public $catches;
|
2016-07-25 14:25:04 +02:00
|
|
|
/** @var null|Finally_ Optional finally node */
|
|
|
|
public $finally;
|
2015-02-28 18:44:28 +01:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
/**
|
|
|
|
* Constructs a try catch node.
|
|
|
|
*
|
2017-01-19 22:46:28 +01:00
|
|
|
* @param Node\Stmt[] $stmts Statements
|
2016-07-25 14:25:04 +02:00
|
|
|
* @param Catch_[] $catches Catches
|
|
|
|
* @param null|Finally_ $finally Optionaly finally node
|
2017-02-02 01:56:15 +01:00
|
|
|
* @param array $attributes Additional attributes
|
2014-02-06 14:44:16 +01:00
|
|
|
*/
|
2017-08-13 14:06:08 +02:00
|
|
|
public function __construct(array $stmts, array $catches, Finally_ $finally = null, array $attributes = []) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->stmts = $stmts;
|
|
|
|
$this->catches = $catches;
|
2016-07-25 14:25:04 +02:00
|
|
|
$this->finally = $finally;
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getSubNodeNames() : array {
|
2017-08-13 14:06:08 +02:00
|
|
|
return ['stmts', 'catches', 'finally'];
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
2017-11-12 21:25:57 +01:00
|
|
|
|
|
|
|
function getType() : string {
|
|
|
|
return 'Stmt_TryCatch';
|
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|