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

39 lines
1.0 KiB
PHP
Raw Normal View History

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