mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 18:28:25 +01:00
23 lines
645 B
PHP
23 lines
645 B
PHP
<?php
|
|
|
|
/**
|
|
* @property PHPParser_Node_Expr_ArrayItem[] $items Items
|
|
*/
|
|
class PHPParser_Node_Expr_Array extends PHPParser_Node_Expr
|
|
{
|
|
/**
|
|
* Constructs an array node.
|
|
*
|
|
* @param PHPParser_Node_Expr_ArrayItem[] $items Items of the array
|
|
* @param int $line Line
|
|
* @param null|string $docComment Nearest doc comment
|
|
*/
|
|
public function __construct(array $items = array(), $line = -1, $docComment = null) {
|
|
parent::__construct(
|
|
array(
|
|
'items' => $items
|
|
),
|
|
$line, $docComment
|
|
);
|
|
}
|
|
} |