Вход Регистрация
Файл: gapps/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php
Строк: 22
<?php

namespace PhpParserNodeStmt;

use 
PhpParserNode;

class 
Catch_ extends NodeStmt
{
    
/** @var NodeName Class of exception */
    
public $type;
    
/** @var string Variable for exception */
    
public $var;
    
/** @var Node[] Statements */
    
public $stmts;

    
/**
     * Constructs a catch node.
     *
     * @param NodeName $type       Class of exception
     * @param string    $var        Variable for exception
     * @param Node[]    $stmts      Statements
     * @param array     $attributes Additional attributes
     */
    
public function __construct(NodeName $type$var, array $stmts = array(), array $attributes = array()) {
        
parent::__construct($attributes);
        
$this->type $type;
        
$this->var $var;
        
$this->stmts $stmts;
    }

    public function 
getSubNodeNames() {
        return array(
'type''var''stmts');
    }
}
Онлайн: 1
Реклама