Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / List_.php
index 30f3dc1652cf50111358e9699b92704a9be3351a..cc156e3a6480676037a74a84cb4225ef4bcfa22c 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Node\Expr;
 
@@ -6,21 +6,25 @@ 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()) {
+    public function __construct(array $items, array $attributes = []) {
         parent::__construct($attributes);
         $this->items = $items;
     }
 
-    public function getSubNodeNames() {
-        return array('items');
+    public function getSubNodeNames() : array {
+        return ['items'];
+    }
+    
+    public function getType() : string {
+        return 'Expr_List';
     }
 }