Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Stmt / DeclareDeclare.php
index 829dbaf25c3de1914a38a8211cf16bafb9745b1e..40bec3030cf3144b4fac53adc65ca4fe77d03406 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Node\Stmt;
 
@@ -6,7 +6,7 @@ use PhpParser\Node;
 
 class DeclareDeclare extends Node\Stmt
 {
-    /** @var string Key */
+    /** @var Node\Identifier Key */
     public $key;
     /** @var Node\Expr Value */
     public $value;
@@ -14,17 +14,21 @@ class DeclareDeclare extends Node\Stmt
     /**
      * Constructs a declare key=>value pair node.
      *
-     * @param string    $key        Key
-     * @param Node\Expr $value      Value
-     * @param array     $attributes Additional attributes
+     * @param string|Node\Identifier $key        Key
+     * @param Node\Expr              $value      Value
+     * @param array                  $attributes Additional attributes
      */
-    public function __construct($key, Node\Expr $value, array $attributes = array()) {
+    public function __construct($key, Node\Expr $value, array $attributes = []) {
         parent::__construct($attributes);
-        $this->key = $key;
+        $this->key = \is_string($key) ? new Node\Identifier($key) : $key;
         $this->value = $value;
     }
 
-    public function getSubNodeNames() {
-        return array('key', 'value');
+    public function getSubNodeNames() : array {
+        return ['key', 'value'];
+    }
+    
+    public function getType() : string {
+        return 'Stmt_DeclareDeclare';
     }
 }