Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / NodeVisitor.php
index 5a1a3d0c4770363636d4c2bd4af3352849e4cbd0..f1f7f3e3e34e0ed1fb84be2da83d4ad480a9e9b4 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser;
 
@@ -32,7 +32,7 @@ interface NodeVisitor
      *
      * @param Node $node Node
      *
-     * @return null|int|Node Node
+     * @return null|int|Node Replacement node (or special return value)
      */
     public function enterNode(Node $node);
 
@@ -53,7 +53,7 @@ interface NodeVisitor
      *
      * @param Node $node Node
      *
-     * @return null|false|int|Node|Node[] Node
+     * @return null|int|Node|Node[] Replacement node (or special return value)
      */
     public function leaveNode(Node $node);
 
@@ -69,4 +69,4 @@ interface NodeVisitor
      * @return null|Node[] Array of nodes
      */
     public function afterTraverse(array $nodes);
-}
\ No newline at end of file
+}