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

42 lines
1.1 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;
2017-01-19 23:32:49 +01:00
use PhpParser\Node\Expr;
class Catch_ extends Node\Stmt
{
/** @var Node\Name[] Types of exceptions to catch */
public $types;
2017-01-19 23:32:49 +01:00
/** @var Expr\Variable Variable for exception */
public $var;
/** @var Node\Stmt[] Statements */
public $stmts;
/**
* Constructs a catch node.
*
2017-01-19 23:32:49 +01:00
* @param Node\Name[] $types Types of exceptions to catch
* @param Expr\Variable $var Variable for exception
* @param Node\Stmt[] $stmts Statements
* @param array $attributes Additional attributes
*/
2017-01-19 23:32:49 +01:00
public function __construct(
array $types, Expr\Variable $var, array $stmts = [], array $attributes = []
2017-01-19 23:32:49 +01:00
) {
2015-05-02 22:17:34 +02:00
parent::__construct($attributes);
$this->types = $types;
$this->var = $var;
$this->stmts = $stmts;
}
2017-04-28 21:40:59 +02:00
public function getSubNodeNames() : array {
return ['types', 'var', 'stmts'];
}
function getType() : string {
return 'Stmt_Catch';
}
}