?iť?

Your IP : 3.149.251.198


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/Static_.php

<?php

namespace PhpParser\Node\Stmt;

use PhpParser\Node\Stmt;

class Static_ extends Stmt
{
    /** @var StaticVar[] Variable definitions */
    public $vars;

    /**
     * Constructs a static variables list node.
     *
     * @param StaticVar[] $vars       Variable definitions
     * @param array       $attributes Additional attributes
     */
    public function __construct(array $vars, array $attributes = array()) {
        parent::__construct(null, $attributes);
        $this->vars = $vars;
    }

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