mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-03 01:38:03 +01:00
26 lines
802 B
PHP
26 lines
802 B
PHP
<?php
|
|
|
|
/**
|
|
* @property PHPParser_Node[] $stmts Statements
|
|
* @property PHPParser_Node_Stmt_Catch[] $catches Catches
|
|
*/
|
|
class PHPParser_Node_Stmt_TryCatch extends PHPParser_Node_Stmt
|
|
{
|
|
/**
|
|
* Constructs a try catch node.
|
|
*
|
|
* @param PHPParser_Node[] $stmts Statements
|
|
* @param PHPParser_Node_Stmt_Catch[] $catches Catches
|
|
* @param int $line Line
|
|
* @param null|string $docComment Nearest doc comment
|
|
*/
|
|
public function __construct(array $stmts, array $catches, $line = -1, $docComment = null) {
|
|
parent::__construct(
|
|
array(
|
|
'stmts' => $stmts,
|
|
'catches' => $catches,
|
|
),
|
|
$line, $docComment
|
|
);
|
|
}
|
|
} |