PHP 클래스 PhpParser\Node\Stmt\Catch_

상속: extends PhpParser\Node\Stmt
파일 보기 프로젝트 열기: nikic/php-parser

공개 프로퍼티들

프로퍼티 타입 설명
$stmts Statements
$types Types of exceptions to catch
$var Variable for exception

공개 메소드들

메소드 설명
__construct ( array $types, string $var, array $stmts = [], array $attributes = [] ) Constructs a catch node.
getSubNodeNames ( )

메소드 상세

__construct() 공개 메소드

Constructs a catch node.
public __construct ( array $types, string $var, array $stmts = [], array $attributes = [] )
$types array Types of exceptions to catch
$var string Variable for exception
$stmts array Statements
$attributes array Additional attributes

getSubNodeNames() 공개 메소드

public getSubNodeNames ( )

프로퍼티 상세

$stmts 공개적으로 프로퍼티

Statements
public $stmts

$types 공개적으로 프로퍼티

Types of exceptions to catch
public $types

$var 공개적으로 프로퍼티

Variable for exception
public $var