Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Stmt / TraitUseAdaptation / Precedence.php
index 1f6bc1f98d35bfb5d179d2733021f6c06eb7a7c1..2ec6bff2a3e091ee27730f03af2ab9f0be21c36f 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Node\Stmt\TraitUseAdaptation;
 
@@ -12,19 +12,23 @@ class Precedence extends Node\Stmt\TraitUseAdaptation
     /**
      * Constructs a trait use precedence adaptation node.
      *
-     * @param Node\Name   $trait       Trait name
-     * @param string      $method      Method name
-     * @param Node\Name[] $insteadof   Overwritten traits
-     * @param array       $attributes  Additional attributes
+     * @param Node\Name              $trait       Trait name
+     * @param string|Node\Identifier $method      Method name
+     * @param Node\Name[]            $insteadof   Overwritten traits
+     * @param array                  $attributes  Additional attributes
      */
-    public function __construct(Node\Name $trait, $method, array $insteadof, array $attributes = array()) {
+    public function __construct(Node\Name $trait, $method, array $insteadof, array $attributes = []) {
         parent::__construct($attributes);
         $this->trait = $trait;
-        $this->method = $method;
+        $this->method = \is_string($method) ? new Node\Identifier($method) : $method;
         $this->insteadof = $insteadof;
     }
 
-    public function getSubNodeNames() {
-        return array('trait', 'method', 'insteadof');
+    public function getSubNodeNames() : array {
+        return ['trait', 'method', 'insteadof'];
+    }
+    
+    public function getType() : string {
+        return 'Stmt_TraitUseAdaptation_Precedence';
     }
 }