Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / Cast / Int_.php
index 02a732740dbaf69ca9504d8b31b7196711cd252f..01ed594bd0e5d625e02721e9b853e05fec153538 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 Int_ extends Cast
 {
+    public function getType() : string {
+        return 'Expr_Cast_Int';
+    }
 }