Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Scalar / MagicConst / Dir.php
index 9a86ae9c0317ed0c2df1e3ecd54a4114fa96a067..2b618473e3829a6fd643fcea13ef8d62bc5f18e4 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 Dir extends MagicConst
 {
-    public function getName() {
+    public function getName() : string {
         return '__DIR__';
     }
-}
\ No newline at end of file
+    
+    public function getType() : string {
+        return 'Scalar_MagicConst_Dir';
+    }
+}