Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Stmt / Nop.php
index 270dd0995ab97c7bcc516bb7bcb473f2215cd278..f86f8df7d324df84763fd2c70032750145c3f62d 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Node\Stmt;
 
@@ -7,7 +7,11 @@ use PhpParser\Node;
 /** Nop/empty statement (;). */
 class Nop extends Node\Stmt
 {
-    public function getSubNodeNames() {
-        return array();
+    public function getSubNodeNames() : array {
+        return [];
+    }
+    
+    public function getType() : string {
+        return 'Stmt_Nop';
     }
 }