1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 02:07:59 +01:00
PHP-Parser/lib/Node/Stmt/Catch.php

10 lines
201 B
PHP
Raw Normal View History

<?php
2011-05-30 17:29:10 +02:00
/**
* @property Node_Name $type Class of exception
* @property string $var Variable for exception
* @property array $stmts Statements
*/
class Node_Stmt_Catch extends Node_Stmt
{
}