?iť?

Your IP : 3.137.219.118


Current Path : /home/s/c/g/scgforma/www/cloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/
Upload File :
Current File : /home/s/c/g/scgforma/www/cloud/3rdparty/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php

<?php

namespace PhpParser\Node\Stmt;

use PhpParser\Node;

class Else_ extends Node\Stmt
{
    /** @var Node[] Statements */
    public $stmts;

    /**
     * Constructs an else node.
     *
     * @param Node[] $stmts      Statements
     * @param array  $attributes Additional attributes
     */
    public function __construct(array $stmts = array(), array $attributes = array()) {
        parent::__construct(null, $attributes);
        $this->stmts = $stmts;
    }

    public function getSubNodeNames() {
        return array('stmts');
    }
}