Array_.php 797 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php declare(strict_types=1);
  2. namespace PhpParser\Node\Expr;
  3. use PhpParser\Node\Expr;
  4. class Array_ extends Expr
  5. {
  6. // For use in "kind" attribute
  7. const KIND_LONG = 1; // array() syntax
  8. const KIND_SHORT = 2; // [] syntax
  9. /** @var (ArrayItem|null)[] Items */
  10. public $items;
  11. /**
  12. * Constructs an array node.
  13. *
  14. * @param (ArrayItem|null)[] $items Items of the array
  15. * @param array $attributes Additional attributes
  16. */
  17. public function __construct(array $items = [], array $attributes = []) {
  18. $this->attributes = $attributes;
  19. $this->items = $items;
  20. }
  21. public function getSubNodeNames() : array {
  22. return ['items'];
  23. }
  24. public function getType() : string {
  25. return 'Expr_Array';
  26. }
  27. }