Yaffs site version 1.1
[yaffs-website] / vendor / psy / psysh / src / Psy / CodeCleaner / MagicConstantsPass.php
index 3a6cd603c922a7481d90e201a641879f57d62480..328eb256a0df9e6e356d471d436be417f0aa559c 100644 (file)
@@ -16,7 +16,7 @@ use PhpParser\Node\Expr\FuncCall;
 use PhpParser\Node\Name;
 use PhpParser\Node\Scalar\MagicConst\Dir;
 use PhpParser\Node\Scalar\MagicConst\File;
-use PhpParser\Node\Scalar\String_ as StringNode;
+use PhpParser\Node\Scalar\String_;
 
 /**
  * Swap out __DIR__ and __FILE__ magic constants with our best guess?
@@ -29,14 +29,14 @@ class MagicConstantsPass extends CodeCleanerPass
      *
      * @param Node $node
      *
-     * @return null|FuncCall|StringNode
+     * @return null|FuncCall|String_
      */
     public function enterNode(Node $node)
     {
         if ($node instanceof Dir) {
             return new FuncCall(new Name('getcwd'), array(), $node->getAttributes());
         } elseif ($node instanceof File) {
-            return new StringNode('', $node->getAttributes());
+            return new String_('', $node->getAttributes());
         }
     }
 }