Phan\Parse\ParseVisitor::visitEcho PHP Method

visitEcho() public method

Visit a node with kind \ast\AST_ECHO
public visitEcho ( ast\Node $node ) : Context
$node ast\Node A node to parse
return Phan\Language\Context A new or an unchanged context resulting from parsing the node
    public function visitEcho(Node $node) : Context
    {
        return $this->visitReturn($node);
    }