2014-02-06 14:44:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
|
|
|
class Catch_ extends Node\Stmt
|
|
|
|
{
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var Node\Name Class of exception */
|
|
|
|
public $type;
|
|
|
|
/** @var string Variable for exception */
|
|
|
|
public $var;
|
|
|
|
/** @var Node[] Statements */
|
|
|
|
public $stmts;
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
/**
|
|
|
|
* Constructs a catch node.
|
|
|
|
*
|
|
|
|
* @param Node\Name $type Class of exception
|
|
|
|
* @param string $var Variable for exception
|
|
|
|
* @param Node[] $stmts Statements
|
|
|
|
* @param array $attributes Additional attributes
|
|
|
|
*/
|
|
|
|
public function __construct(Node\Name $type, $var, array $stmts = array(), array $attributes = array()) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->type = $type;
|
|
|
|
$this->var = $var;
|
|
|
|
$this->stmts = $stmts;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array('type', 'var', 'stmts');
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|