1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 18:28:25 +01:00
PHP-Parser/lib/PhpParser/Node/Expr/Array.php

26 lines
538 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
namespace PhpParser\Node\Expr;
use PhpParser\Node\Expr;
2011-06-05 18:40:04 +02:00
/**
* @property ArrayItem[] $items Items
2011-06-05 18:40:04 +02:00
*/
class Array_ extends Expr
2011-06-05 18:40:04 +02:00
{
/**
* Constructs an array node.
*
* @param ArrayItem[] $items Items of the array
* @param array $attributes Additional attributes
*/
public function __construct(array $items = array(), array $attributes = array()) {
parent::__construct(
array(
'items' => $items
),
$attributes
);
}
2011-06-05 18:40:04 +02:00
}