Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / Cast / Array_.php
index 08b3a384c3bff29c785a60c042cc0a27101fafac..57cc473b6256ce93155cb84552a898e113f2640d 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Node\Expr\Cast;
 
@@ -6,4 +6,7 @@ use PhpParser\Node\Expr\Cast;
 
 class Array_ extends Cast
 {
-}
\ No newline at end of file
+    public function getType() : string {
+        return 'Expr_Cast_Array';
+    }
+}