2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Expr;
|
|
|
|
|
|
|
|
use PhpParser\Node\Expr;
|
|
|
|
|
|
|
|
class Array_ extends Expr
|
2011-06-05 18:40:04 +02:00
|
|
|
{
|
2016-03-09 21:30:39 +01:00
|
|
|
// For use in "kind" attribute
|
|
|
|
const KIND_LONG = 1; // array() syntax
|
|
|
|
const KIND_SHORT = 2; // [] syntax
|
|
|
|
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var ArrayItem[] Items */
|
|
|
|
public $items;
|
|
|
|
|
2011-08-11 08:13:01 +02:00
|
|
|
/**
|
|
|
|
* Constructs an array node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param ArrayItem[] $items Items of the array
|
|
|
|
* @param array $attributes Additional attributes
|
2011-08-11 08:13:01 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct(array $items = array(), array $attributes = array()) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->items = $items;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array('items');
|
2011-08-11 08:13:01 +02:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|