Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Scalar / MagicConst / Line.php
index 35f89bc7265823c19336d7d2fa083a015c40fe50..25d3de57c131705b47a60c67eb930e761543648b 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Node\Scalar\MagicConst;
 
@@ -6,7 +6,11 @@ use PhpParser\Node\Scalar\MagicConst;
 
 class Line extends MagicConst
 {
-    public function getName() {
+    public function getName() : string {
         return '__LINE__';
     }
-}
\ No newline at end of file
+    
+    public function getType() : string {
+        return 'Scalar_MagicConst_Line';
+    }
+}