D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
t
/
a
/
t
/
tattooscyy
/
www
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
/
Expr
/
Filename :
List_.php
back
Copy
<?php namespace PhpParser\Node\Expr; use PhpParser\Node\Expr; class List_ extends Expr { /** @var ArrayItem[] List of items to assign to */ public $items; /** * Constructs a list() destructuring node. * * @param ArrayItem[] $items List of items to assign to * @param array $attributes Additional attributes */ public function __construct(array $items, array $attributes = array()) { parent::__construct($attributes); $this->items = $items; } public function getSubNodeNames() { return array('items'); } }