Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Stmt / TryCatch.php
index 0ff36cc77ee355b5c91aa8b0dd9a493430fa8846..7661ecb7adb41f581bda775f3281d41bee59f290 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Node\Stmt;
 
@@ -6,7 +6,7 @@ use PhpParser\Node;
 
 class TryCatch extends Node\Stmt
 {
-    /** @var Node[] Statements */
+    /** @var Node\Stmt[] Statements */
     public $stmts;
     /** @var Catch_[] Catches */
     public $catches;
@@ -16,19 +16,23 @@ class TryCatch extends Node\Stmt
     /**
      * Constructs a try catch node.
      *
-     * @param Node[]        $stmts      Statements
+     * @param Node\Stmt[]   $stmts      Statements
      * @param Catch_[]      $catches    Catches
      * @param null|Finally_ $finally    Optionaly finally node
-     * @param array|null    $attributes Additional attributes
+     * @param array         $attributes Additional attributes
      */
-    public function __construct(array $stmts, array $catches, Finally_ $finally = null, array $attributes = array()) {
+    public function __construct(array $stmts, array $catches, Finally_ $finally = null, array $attributes = []) {
         parent::__construct($attributes);
         $this->stmts = $stmts;
         $this->catches = $catches;
         $this->finally = $finally;
     }
 
-    public function getSubNodeNames() {
-        return array('stmts', 'catches', 'finally');
+    public function getSubNodeNames() : array {
+        return ['stmts', 'catches', 'finally'];
+    }
+    
+    public function getType() : string {
+        return 'Stmt_TryCatch';
     }
 }