2014-02-06 14:44:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
2017-01-19 23:32:49 +01:00
|
|
|
use PhpParser\Node\Expr;
|
2014-02-06 14:44:16 +01:00
|
|
|
|
|
|
|
class Catch_ extends Node\Stmt
|
|
|
|
{
|
2016-07-22 15:40:00 +02:00
|
|
|
/** @var Node\Name[] Types of exceptions to catch */
|
|
|
|
public $types;
|
2017-01-19 23:32:49 +01:00
|
|
|
/** @var Expr\Variable Variable for exception */
|
2015-02-28 18:44:28 +01:00
|
|
|
public $var;
|
2017-01-19 22:46:28 +01:00
|
|
|
/** @var Node\Stmt[] Statements */
|
2015-02-28 18:44:28 +01:00
|
|
|
public $stmts;
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
/**
|
|
|
|
* 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
|
2014-02-06 14:44:16 +01:00
|
|
|
*/
|
2017-01-19 23:32:49 +01:00
|
|
|
public function __construct(
|
|
|
|
array $types, Expr\Variable $var, array $stmts = array(), array $attributes = array()
|
|
|
|
) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2016-07-22 15:40:00 +02:00
|
|
|
$this->types = $types;
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->var = $var;
|
|
|
|
$this->stmts = $stmts;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
2016-07-22 15:40:00 +02:00
|
|
|
return array('types', 'var', 'stmts');
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|