1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-12 09:29:47 +01:00
PHP-Parser/lib/PHPParser/Node/Stmt/TryCatch.php

26 lines
802 B
PHP
Raw Normal View History

<?php
2011-05-30 17:29:10 +02:00
/**
2011-10-15 19:28:15 +02:00
* @property PHPParser_Node[] $stmts Statements
* @property PHPParser_Node_Stmt_Catch[] $catches Catches
2011-05-30 17:29:10 +02:00
*/
2011-06-05 18:40:04 +02:00
class PHPParser_Node_Stmt_TryCatch extends PHPParser_Node_Stmt
{
2011-10-15 19:28:15 +02:00
/**
* 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
);
}
}