Fix type annotation for List::$items

This commit is contained in:
Nikita Popov 2017-05-07 19:55:29 +02:00
parent 73dc35cbbd
commit 4e162bd0ea

View File

@ -6,14 +6,14 @@ use PhpParser\Node\Expr;
class List_ extends Expr
{
/** @var ArrayItem[] List of items to assign to */
/** @var (ArrayItem|null)[] 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
* @param (ArrayItem|null)[] $items List of items to assign to
* @param array $attributes Additional attributes
*/
public function __construct(array $items, array $attributes = array()) {
parent::__construct($attributes);